Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Aug 15, 2023
1 parent b352861 commit 33aca81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"eslint-plugin-promise": "^6.1.1",
"nanodelay": "^1.0.8",
"nanospy": "^1.0.0",
"postcss-parser-tests": "^8.6.0",
"postcss-parser-tests": "^8.7.0",
"simple-git-hooks": "^2.9.0",
"size-limit": "^8.2.6",
"strip-ansi": "^6.0.1",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/parse.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ eachTest((name, css, json) => {
test(`parses ${name}`, () => {
css = css.replace(/\r\n/g, '\n')
let parsed = jsonify(parse(css, { from: name }))
equal(JSON.parse(parsed), JSON.parse(json))
equal(parsed, json)
})
})

Expand Down

0 comments on commit 33aca81

Please sign in to comment.