mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
added small exercise for jest testing
This commit is contained in:
32
step2-04/demo/src/index.spec.ts
Normal file
32
step2-04/demo/src/index.spec.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
import { square } from '.';
|
||||
|
||||
describe('jest example', () => {
|
||||
beforeEach(() => {
|
||||
jest.resetModules();
|
||||
});
|
||||
|
||||
it('should be able to give the square of two numbers', () => {
|
||||
console.log('test');
|
||||
expect(square(5)).toBe(25);
|
||||
});
|
||||
|
||||
it('should increment counter', () => {
|
||||
const { increment } = require('.');
|
||||
expect(increment()).toBe(1);
|
||||
});
|
||||
|
||||
it('should decrement counter', () => {
|
||||
const { decrement } = require('.');
|
||||
expect(decrement()).toBe(-1);
|
||||
});
|
||||
|
||||
it('should retrieve count', () => {
|
||||
const { decrement, getCount, increment } = require('.');
|
||||
increment();
|
||||
increment();
|
||||
decrement();
|
||||
increment();
|
||||
|
||||
expect(getCount()).toBe(2);
|
||||
});
|
||||
});
|
||||
17
step2-04/demo/src/index.ts
Normal file
17
step2-04/demo/src/index.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
let counter = 0;
|
||||
|
||||
export function getCount() {
|
||||
return counter;
|
||||
}
|
||||
|
||||
export function increment() {
|
||||
return ++counter;
|
||||
}
|
||||
|
||||
export function decrement() {
|
||||
return --counter;
|
||||
}
|
||||
|
||||
export function square(x: number) {
|
||||
return x * x;
|
||||
}
|
||||
14
step2-04/demo/src/store/index.ts
Normal file
14
step2-04/demo/src/store/index.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export type FilterTypes = 'all' | 'active' | 'completed';
|
||||
|
||||
export interface TodoItem {
|
||||
label: string;
|
||||
completed: boolean;
|
||||
}
|
||||
|
||||
export interface Store {
|
||||
todos: {
|
||||
[id: string]: TodoItem;
|
||||
};
|
||||
|
||||
filter: FilterTypes;
|
||||
}
|
||||
Reference in New Issue
Block a user