diff --git a/src/tests/specs/ink/Sequence.spec.ts b/src/tests/specs/ink/Sequence.spec.ts index fcc424a1..87162a2c 100644 --- a/src/tests/specs/ink/Sequence.spec.ts +++ b/src/tests/specs/ink/Sequence.spec.ts @@ -43,6 +43,6 @@ describe('Sequences', () => { it('tests all sequence type', () => { loadStory('all_sequence_types'); - expect(story.ContinueMaximally()).toBe('Once: one two\nStopping: one two two two\nDefault: one two two two\nCycle: one two one two\nShuffle: two one one two\nShuffle stopping: one two final final\nShuffle once: two one\n'); + expect(story.ContinueMaximally()).toBe('Once: one two\nStopping: one two two two\nDefault: one two two two\nCycle: one two one two\nShuffle: two one two one\nShuffle stopping: two one final final\nShuffle once: one two\n'); }); }); diff --git a/src/tests/specs/inkjs/Logic.spec.ts b/src/tests/specs/inkjs/Logic.spec.ts index b155ecf6..75123665 100644 --- a/src/tests/specs/inkjs/Logic.spec.ts +++ b/src/tests/specs/inkjs/Logic.spec.ts @@ -154,7 +154,7 @@ describe('Logic', () => { it('should generate random numbers', () => { story.ChoosePathString('logic.random'); - expect(story.Continue()).toEqual('15\n'); - expect(story.Continue()).toEqual('-24\n'); + expect(story.Continue()).toEqual('39\n'); + expect(story.Continue()).toEqual('16\n'); }); });