We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 996517b + ff83f40 commit b90b5d1Copy full SHA for b90b5d1
packages/apps/job-launcher/server/src/modules/job/fixtures.ts
@@ -151,9 +151,10 @@ export const createJobEntity = (
151
max: 1000,
152
fractionDigits: 6,
153
});
154
- entity.token = faker.helpers.arrayElement(
155
- Object.values(EscrowFundToken),
156
- ) as EscrowFundToken;
+ entity.token = faker.helpers.arrayElement([
+ EscrowFundToken.HMT,
+ EscrowFundToken.USDC,
157
+ ]) as EscrowFundToken;
158
entity.manifestUrl = faker.internet.url();
159
entity.manifestHash = faker.string.uuid();
160
entity.failedReason = null;
0 commit comments