Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 2a3e5fa

Browse files
committed
Update tests
1 parent b7d2c9b commit 2a3e5fa

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"homepage": "https://github.com/learn-co-curriculum/js-functions-lab#readme",
2727
"devDependencies": {
2828
"chai": "^3.5.0",
29+
"expect": "^1.20.2",
2930
"jsdom": "^9.0.0",
3031
"mocha": "^2.4.5",
3132
"mocha-jsdom": "^1.1.0",

test/index-test.js

-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
/*global describe, it*/
22

3-
const expect = require('chai').expect
4-
const fs = require('fs')
5-
const jsdom = require('mocha-jsdom')
6-
const path = require('path')
7-
83
describe('functions', () => {
9-
jsdom({
10-
src: fs.readFileSync(path.resolve(__dirname, '..', 'index.js'), 'utf-8')
11-
})
12-
134
describe('happyHolidays', () => {
145
it('returns "Happy holidays!"', () => {
156
expect(happyHolidays()).to.equal('Happy holidays!')

test/mocha.opts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--timeout 10000

test/root.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
global.expect = require('expect')
2+
3+
const fs = require('fs')
4+
const jsdom = require('mocha-jsdom')
5+
const path = require('path')
6+
7+
jsdom({
8+
src: fs.readFileSync(path.resolve(__dirname, '..', 'index.js'), 'utf-8')
9+
})

0 commit comments

Comments
 (0)