Test failing Test
Some checks failed
E2E Testing / test (push) Failing after 1m17s

This commit is contained in:
Sebastian Böckelmann 2024-01-27 00:11:02 +01:00
parent ffd600b84c
commit 9fea6587f3

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(1);
expect(gameModel.gamesystems.length).toEqual(2);
})
});