2015-12-09 10:41:04 +00:00
|
|
|
|
|
|
|
var chai = require('chai')
|
|
|
|
, expect = chai.expect
|
|
|
|
, should = chai.should()
|
|
|
|
, path = require('path')
|
|
|
|
, _ = require('underscore')
|
|
|
|
, FRESHResume = require('../src/core/fresh-resume')
|
|
|
|
, FCMD = require( '../src/fluentcmd')
|
|
|
|
, validator = require('is-my-json-valid')
|
|
|
|
, COLORS = require('colors');
|
|
|
|
|
|
|
|
chai.config.includeStack = false;
|
|
|
|
|
|
|
|
describe('Testing themes', function () {
|
|
|
|
|
|
|
|
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',
|
|
|
|
});
|
|
|
|
|
2015-12-12 16:13:37 +00:00
|
|
|
function genTheme( themeName ) {
|
|
|
|
it( themeName.toUpperCase() + ' theme should generate without throwing an exception', function () {
|
|
|
|
function tryOpen() {
|
|
|
|
var src = ['node_modules/FRESCA/exemplar/jane-doe.json'];
|
|
|
|
var dst = ['tests/sandbox/hello-world/resume.all'];
|
|
|
|
var opts = {
|
|
|
|
theme: themeName,
|
|
|
|
format: 'FRESH',
|
|
|
|
prettify: true,
|
|
|
|
silent: false
|
|
|
|
};
|
|
|
|
FCMD.verbs.build( src, dst, opts );
|
|
|
|
}
|
|
|
|
tryOpen.should.not.Throw();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
genTheme('hello-world');
|
|
|
|
genTheme('compact');
|
|
|
|
genTheme('modern');
|
|
|
|
genTheme('minimist');
|
|
|
|
genTheme('awesome');
|
2015-12-09 10:41:04 +00:00
|
|
|
|
|
|
|
});
|