Skip to content

Commit

Permalink
Merge pull request #44 from ntwb/ava14
Browse files Browse the repository at this point in the history
Update AVA v0.14.0
  • Loading branch information
ntwb committed May 31, 2020
1 parent 3202c1c commit 5d4be19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/stylelint-config-wordpress/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ test("no warnings with valid css", t => {
.then(data => {
const { errored, results } = data
const { warnings } = results[0]
t.notOk(errored, "no errored")
t.falsy(errored, "no errored")
t.is(warnings.length, 0, "flags no warnings")
})
})
Expand All @@ -88,7 +88,7 @@ test("a warning with invalid css", t => {
.then(data => {
const { errored, results } = data
const { warnings } = results[0]
t.ok(errored, "errored")
t.truthy(errored, "errored")
t.is(warnings.length, 1, "flags one warning")
t.is(warnings[0].text, "Expected a leading zero (number-leading-zero)", "correct warning text")
})
Expand Down
2 changes: 1 addition & 1 deletion packages/stylelint-config-wordpress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"index.js"
],
"devDependencies": {
"ava": "^0.13.0",
"ava": "^0.14.0",
"eslint": "^2.4.0",
"eslint-config-stylelint": "^1.0.0",
"npmpub": "^3.0.3",
Expand Down

0 comments on commit 5d4be19

Please sign in to comment.