Skip to content

Commit b254cc5

Browse files
authored
Fix tests (#19)
Remove `Deno.runTests` and use `deno test`
1 parent 84ed648 commit b254cc5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

index.test.js

-2
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,3 @@ Deno.test({
1818
assertEquals(mmInstance.makeRe() instanceof RegExp, true)
1919
},
2020
})
21-
22-
Deno.runTests()

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build": "rollup -c",
99
"lint": "eslint .",
1010
"pretest": "yarn build",
11-
"test": "yarn lint && deno run index.test.js"
11+
"test": "yarn lint && deno test index.test.js"
1212
},
1313
"eslintIgnore": [
1414
"index.js"
@@ -26,4 +26,4 @@
2626
"node": "12.13.0",
2727
"yarn": "1.19.1"
2828
}
29-
}
29+
}

0 commit comments

Comments
 (0)