mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
fixing up step 2-4 exercise
This commit is contained in:
@@ -1,14 +1,16 @@
|
|||||||
|
// TODO: import stack here
|
||||||
|
|
||||||
describe('stack', () => {
|
describe('stack', () => {
|
||||||
it('should push item to the top of the stack', () => {
|
it('should push item to the top of the stack', () => {
|
||||||
// implement test here:
|
// TODO: implement test here:
|
||||||
// 1. require the stack
|
// 1. instantiate a new Stack - i.e. const stack = new Stack<number>();
|
||||||
// 2. create stack push calls to place some items in the stack
|
// 2. create stack push calls to place some items in the stack
|
||||||
// 3. write assertions via the expect() API
|
// 3. write assertions via the expect() API
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should pop the item from the top of stack', () => {
|
it('should pop the item from the top of stack', () => {
|
||||||
// implement test here:
|
// TODO: implement test here:
|
||||||
// 1. require the stack
|
// 1. instantiate a new Stack - i.e. const stack = new Stack<number>();
|
||||||
// 2. create stack push calls to place some items in the stack
|
// 2. create stack push calls to place some items in the stack
|
||||||
// 3. pop a few items off the stack
|
// 3. pop a few items off the stack
|
||||||
// 4. write assertions via the expect() API
|
// 4. write assertions via the expect() API
|
||||||
|
|||||||
Reference in New Issue
Block a user