Skip to content

Commit 3275dbc

Browse files
committedSep 11, 2018
Upgrade mocha
1 parent 4b382a5 commit 3275dbc

File tree

3 files changed

+51
-33
lines changed

3 files changed

+51
-33
lines changed
 

‎package-lock.json

+48-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"utila": "^0.4.0"
1212
},
1313
"devDependencies": {
14-
"chai": "^2.2.0",
14+
"chai": "^4.1.2",
1515
"chai-changes": "^1.3.4",
1616
"chai-fuzzy": "^1.5.0",
1717
"coffee-script": "^1.9.1",

‎test/tools.coffee

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ describe "tools", ->
1515
tools.objectToDom({a: 'text'})
1616

1717
it "should have quoted text nodes", ->
18-
tools.objectToDom({a: '&<> "'}).should.have.deep
19-
.property '[0].children[0].data', '&amp;&lt;&gt;&sp;&quot;'
18+
tools.objectToDom({a: '&<> "'})[0].children[0]
19+
.data.should.equal '&amp;&lt;&gt;&sp;&quot;'

0 commit comments

Comments
 (0)
Please sign in to comment.