Skip to content

Commit

Permalink
Re-enable airbnb-base
Browse files Browse the repository at this point in the history
  • Loading branch information
emmercm committed Oct 17, 2023
1 parent 099cf83 commit d4b6754
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/modules/datGameInferrer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ test.each([
const dats = new DATGameInferrer(new ProgressBarFake()).infer(romFiles);

// Then
const datNameToGameCount = Object.fromEntries(dats.map((dat) => [dat.getName(), dat.getGames().length]));
const datNameToGameCount = Object.fromEntries(
dats.map((dat) => [dat.getName(), dat.getGames().length]),
);
expect(datNameToGameCount).toEqual(expected);
});

0 comments on commit d4b6754

Please sign in to comment.