Skip to content

Commit 66bcaee

Browse files
fix ci
1 parent 537254a commit 66bcaee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function main(sources: string[]) {
2020
if (fixturesFromCmdline) {
2121
const fixtureNames = fixturesFromCmdline.split(",");
2222
fixtures = fixtures.filter((fixture) =>
23-
fixtureNames.some(fixture.runForName),
23+
fixtureNames.some((name) => fixture.runForName(name)),
2424
);
2525
}
2626

@@ -70,7 +70,9 @@ async function main(sources: string[]) {
7070
},
7171

7272
map: async ({ sample, fixtureName }: WorkItem, index) => {
73-
const fixture = fixtures.find((fixture) => fixture.name === fixtureName);
73+
const fixture = fixtures.find(
74+
(fixture) => fixture.name === fixtureName,
75+
);
7476

7577
try {
7678
await fixture?.runWithSample(sample, index, tests.length);

0 commit comments

Comments
 (0)