$ npm install
$ npm install -g jest
$ npm run test
$ npm run test:watch # watch mode
jest fizzbuzz/test.js --watch
jest palindrome/test.js --watch
jest reverseint/test.js --watch
jest vowels/test.js --watch
$ npm run dev
$ npm start
Now you can access http://localhost:3000.
We have 5 games as follows. FizzBuzz, MaxChar, Palindrome, ReverseInt and Vowels.
We created website to prepare. We created test cases waiting for a attendees to do the tasks.
You should write and test the program as follows directory
app
├── fizzbuzz
│ ├── index.js
│ └── test.js
├── maxchar
│ ├── index.js
│ └── test.js
├── palindrome
│ ├── index.js
│ └── test.js
├── reverseint
│ ├── index.js
│ └── test.js
└── vowels
├── index.js
└── test.js