Correct failing test
All checks were successful
E2E Testing / test (push) Successful in 1m17s

This commit is contained in:
Sebastian Böckelmann 2024-01-27 00:12:59 +01:00
parent 9fea6587f3
commit 4740fc996a

View File

@ -18,6 +18,6 @@ test.describe('Adding Gamesystems', () => {
const gamesystem = new Gamesystem("Gamesystem");
gameModel.addGamesystem(gamesystem);
gameModel.addGamesystem(gamesystem)
expect(gameModel.gamesystems.length).toEqual(2);
expect(gameModel.gamesystems.length).toEqual(1);
})
});