Skip to content

Latest commit

 

History

History
73 lines (60 loc) · 1.36 KB

readme.md

File metadata and controls

73 lines (60 loc) · 1.36 KB

Scrum Project

Preview Image

This project created from 'express --view=ejs'.

So, We build it to practice about Scrum Process.

Prerequisite

Windows, OSX or Linux

Browser such as Google Chrome, Mozilla Firefox, Safari or Internet Exploror

NodeJs

Repository

Install

$ npm install
$ npm install -g jest

Run Test

$ npm run test
$ npm run test:watch # watch mode

Run jest for Test

jest fizzbuzz/test.js --watch
jest palindrome/test.js --watch
jest reverseint/test.js --watch
jest vowels/test.js --watch

Run in Dev Mode (auto restart)

$ npm run dev

Run Project

$ npm start

Now you can access http://localhost:3000.

Game

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