Upgrade Ava to 4.3.1
Fixes broken tests with earlier version.
This commit is contained in:
parent
dc0ce83990
commit
2f71c44198
File diff suppressed because it is too large
Load Diff
|
|
@ -17,7 +17,7 @@
|
||||||
"@tailwindcss/typography": "^0.5.2",
|
"@tailwindcss/typography": "^0.5.2",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
||||||
"@typescript-eslint/parser": "^4.33.0",
|
"@typescript-eslint/parser": "^4.33.0",
|
||||||
"ava": "^3.15.0",
|
"ava": "^4.3.1",
|
||||||
"daisyui": "^2.0.2",
|
"daisyui": "^2.0.2",
|
||||||
"eslint": "^7.32.0",
|
"eslint": "^7.32.0",
|
||||||
"eslint-config-prettier": "^8.1.0",
|
"eslint-config-prettier": "^8.1.0",
|
||||||
|
|
@ -45,9 +45,6 @@
|
||||||
"ts-node/register",
|
"ts-node/register",
|
||||||
"tsconfig-paths/register"
|
"tsconfig-paths/register"
|
||||||
],
|
],
|
||||||
"nonSemVerExperiments": {
|
|
||||||
"configurableModuleFormat": true
|
|
||||||
},
|
|
||||||
"nodeArguments": [
|
"nodeArguments": [
|
||||||
"--loader=./tsnode-loader.js"
|
"--loader=./tsnode-loader.js"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
import test from 'ava'
|
||||||
|
|
||||||
|
test('my passing test', t => {
|
||||||
|
t.pass()
|
||||||
|
})
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
|
|
||||||
import type { TestInterface } from 'ava'
|
|
||||||
|
|
||||||
import anyTest from 'ava'
|
|
||||||
|
|
||||||
const test = anyTest as TestInterface<{ thing: string }>
|
|
||||||
|
|
||||||
test('validates a ucan', t => {
|
|
||||||
t.is(true, true)
|
|
||||||
})
|
|
||||||
Loading…
Reference in New Issue