Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Aug 14, 2023
1 parent 6aab9a5 commit 4bd0bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parse.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let parse = require('../lib/scss-parse')
eachTest((name, css, json) => {
test('parses ' + name, () => {
let parsed = jsonify(parse(css, { from: name }))
equal(parsed, json)
equal(JSON.parse(parsed), JSON.parse(json))
})
})

Expand Down

0 comments on commit 4bd0bb4

Please sign in to comment.