1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-08 02:30:05 +01:00
HackMyResume/test/test-themes.js

54 lines
1.4 KiB
JavaScript
Raw Normal View History

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')
2015-12-19 17:37:42 +00:00
, FCMD = require( '../src/hackmycmd')
2015-12-09 10:41:04 +00:00
, 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() {
2015-12-18 20:34:30 +00:00
var src = ['node_modules/jane-q-fullstacker/resume/jane-resume.json'];
var dst = ['tests/sandbox/' + themeName + '/resume.all'];
2015-12-12 16:13:37 +00:00
var opts = {
theme: themeName,
format: 'FRESH',
prettify: true,
2015-12-21 07:58:16 +00:00
silent: true
2015-12-12 16:13:37 +00:00
};
2015-12-21 07:58:16 +00:00
FCMD.verbs.build( src, dst, opts, function() { } );
2015-12-12 16:13:37 +00:00
}
tryOpen.should.not.Throw();
});
}
genTheme('hello-world');
genTheme('compact');
genTheme('modern');
genTheme('minimist');
genTheme('awesome');
2015-12-18 20:34:30 +00:00
genTheme('positive');
2015-12-09 10:41:04 +00:00
});