GitHub - tomastrajan/angular-js-es6-testing-example: Enhanced testing of Angular JS 1.X applications using ES6 modules (original) (raw)
Angular JS 1.5 - ES6 Module Unit testing and Karma Integration testing seed by @tomastrajan 
Great seed for enterprise projects with heavy focus on unit and integration testing.
This repository contains two releases:
1.4.0
- for Angular JS 1.4 and lower (uses Component Pattern for Angular JS)1.5.0
- for Angular JS 1.5 and above which supports native.component(name, options)
API
Info
- original blog post describing Proper testing of Angular JS 1.X applications with ES6 modules
- demo project with examples of mocha unit & karma integration tests
- presentation about the concepts used in this repository
- video from Angular JS Meetup Zurich
Getting started
- Clone repository
git clone https://github.com/tomastrajan/angular-js-es6-testing-example.git
- Enter project directory
cd angular-js-es6-testing-example
- Install dependencies
npm i
ornpm install
Scripts
All scripts are run with npm run [script]
, for example: npm run test
.
start
- start development server, try it by openinghttp://localhost:8081/webpack-dev-server/index.html
build
- create dev build, checkbuild
directorydist
- create production build, checkdist
directoryserver_build
- serve content frombuild
directoryserver_dist
- serve content fromdist
directorylint
- lint code (with ESLint)mocha
- run all unit tests (with Mocha)watch
- run and watch all unit tests (with Mocha)karma
- run all integration tests (with Karma / Jasmine)test
- lint code and run all tests (with Mocha and Karma)ci
- for Travis CI
Tests
For more detailed info about tests check the original blog post.
*.test.js
- mocha unit tests*.integration.test.js
- mocha integration tests (manual)*.spec.js
- karma integration tests (spin up Angular JS app context)