(account?: Partial<Account>)
| 49 | * @param account - A partial (or complete) Account object. |
| 50 | */ |
| 51 | export function givenAccount(account?: Partial<Account>) { |
| 52 | const data = Object.assign({balance: 999}, account); |
| 53 | return new Account(data); |
| 54 | } |
| 55 | |
| 56 | export async function givenRunningApplicationWithCustomConfiguration() { |
| 57 | const app = new ReferencesManyApplication({ |
no outgoing calls
no test coverage detected