Skip to content

hexagon6/es-testing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ECMAScript 6+ testing setup for node

This project allows you to quickly start coding with ECMAScript 6+ in node with tests from the beginnning

How to install

Install degit globally if you don't have it yet: npm i -g degit

Check out the latest commit of this repository and install dependencies:

  1. degit https://github.com/hexagon6/es-testing.git my-projectfolder
  2. npm install or yarn

How to run tests

npm test or yarn test

Watch mode

npm test -w or yarn test -w

This command runs tests on each save of a file and let's you focus on your code.

Folder structure

├── src
│   └── index.js        <- implementation
├── test
│   └── index.test.js   <- tests

Test runner

ava

Enjoy!

About

Basic setup for developing TDD-style with all new ES-features on node

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published