1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-03 00:30:05 +01:00

Replace chalk with colors in tests.

This commit is contained in:
hacksalot 2016-01-01 04:48:20 -05:00
parent cb14452df3
commit b96526da31
2 changed files with 2 additions and 26 deletions

View File

@ -6,8 +6,7 @@ var chai = require('chai')
, _ = require('underscore')
, FRESHResume = require('../src/core/fresh-resume')
, FCMD = require( '../src/hackmycmd')
, validator = require('is-my-json-valid')
, COLORS = require('colors');
, validator = require('is-my-json-valid');
chai.config.includeStack = false;
@ -19,17 +18,6 @@ describe('Testing CLI interface', function () {
}
COLORS.setTheme({
title: ['white','bold'],
info: process.platform === 'win32' ? 'gray' : ['white','dim'],
infoBold: ['white','dim'],
warn: 'yellow',
error: 'red',
guide: 'yellow',
status: 'gray',//['white','dim'],
useful: 'green',
});
var opts = {
//theme: 'compact',
format: 'FRESH',

View File

@ -7,8 +7,7 @@ var SPAWNWATCHER = require('../src/core/spawn-watch')
, _ = require('underscore')
, FRESHResume = require('../src/core/fresh-resume')
, FCMD = require( '../src/hackmycmd')
, validator = require('is-my-json-valid')
, COLORS = require('colors');
, validator = require('is-my-json-valid');
chai.config.includeStack = false;
@ -18,17 +17,6 @@ function genThemes( title, src, fmt ) {
var _sheet;
COLORS.setTheme({
title: ['white','bold'],
info: process.platform === 'win32' ? 'gray' : ['white','dim'],
infoBold: ['white','dim'],
warn: 'yellow',
error: 'red',
guide: 'yellow',
status: 'gray',//['white','dim'],
useful: 'green',
});
function genTheme( fmt, src, themeName, themeLoc, testTitle ) {
themeLoc = themeLoc || themeName;
testTitle = themeName.toUpperCase() + ' theme (' + fmt + ') should generate without throwing an exception';