1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-09-28 20:19:12 +01:00

Update FRESH tests with new exemplar name.

This commit is contained in:
devlinjd 2015-11-19 17:19:27 -05:00
parent 1b3fdfbc5f
commit 15a74587bc

View File

@ -9,14 +9,14 @@ var chai = require('chai')
chai.config.includeStack = false;
describe('fresh-resume-exemplar.json (FRESH)', function () {
describe('jane-doe.json (FRESH)', function () {
var _sheet;
it('should open without throwing an exception', function () {
function tryOpen() {
_sheet = new FRESHResume().open(
'node_modules/FRESCA/examples/fresh-resume-exemplar.json' );
'node_modules/FRESCA/exemplar/jane-doe.json' );
}
tryOpen.should.not.Throw();
});