More tests.

This commit is contained in:
Oleksii Trekhleb
2018-04-04 07:02:56 +03:00
parent 72baedeb89
commit f5ae2360f2
6 changed files with 12 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ describe('Stack', () => {
expect(stack.pop()).toBe(2);
expect(stack.pop()).toBe(1);
expect(stack.pop()).toBeNull();
expect(stack.isEmpty()).toBeTruthy();
});
});