"start": "gulp",
"test": "npm run test:sass && npm run test:javascript:units",
"test:ci": "npm run test:sass && npm run test:javascript:ci",
- "test:sass": "mocha test/sass/test_sass.js",
+ "test:sass": "mocha test/sass/test_sass.js --colors",
"test:javascript:transpile": "gulp sass:foundation && gulp test:transpile-js",
"test:javascript:units": "npm run test:javascript:transpile && mocha-headless-chrome -a ignore-resource-errors -f test/javascript/index.html",
"test:javascript:browserstack": "npm run test:javascript:transpile && browserstack-runner",
child.on('exit', function (code) {
if(code === 0){
- console.log(chalk.yellow(code, '🐶 ✓ Tests run well, we can commit...'))
+ console.log(chalk.yellow('🐶 ✓ Tests run well, we can commit...'))
} else {
console.log(chalk.yellow('🐶 ✗ Tests are failing, please fix them before committing.'))
}
child.on('exit', function (code) {
if(code === 0){
- console.log(chalk.yellow(code, '🐶 ✓ Tests run well, we can push...'))
+ console.log(chalk.yellow('🐶 ✓ Tests run well, we can push...'))
} else {
console.log(chalk.yellow('🐶 ✗ Tests are failing, please fix them before pushing.'))
}