mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-03-26 19:56:44 +08:00
17 lines
540 B
TypeScript
17 lines
540 B
TypeScript
describe('stack', () => {
|
|
it('should push item to the top of the stack', () => {
|
|
// implement test here:
|
|
// 1. require the stack
|
|
// 2. create stack push calls to place some items in the stack
|
|
// 3. write assertions via the expect() API
|
|
});
|
|
|
|
it('should pop the item from the top of stack', () => {
|
|
// implement test here:
|
|
// 1. require the stack
|
|
// 2. create stack push calls to place some items in the stack
|
|
// 3. pop a few items off the stack
|
|
// 4. write assertions via the expect() API
|
|
});
|
|
});
|