Thank you for your interest in contributing to SKY UX!
For the suggested workflow, coding conventions, and additional guidance, please see our contribution guidelines.
npm run coverage
Runs our unit spec tests, saving coverage to thecoverage/
directory. This contains the following sub tasks:npm run coverage:builder
which tests the nodejs/builder code and places coverage incoverage/builder
.npm run coverage:runtime
which tests theruntime
components and places coverage incoverage/runtime
.npm run coverage:src-app
which tests thesrc/app
components and places coverage incoverage/src-app
.
npm run e2e
Runs the defined end-to-end tests.npm run jscs
Runs this code against the jscs linter.npm run jshint
Runs this code against the jshint linter.npm run lint
Runs thejscs
andjshint
commands.npm run test
Runs ALL test commands:lint
,coverage
, ande2e
.