Compare commits

...

15 Commits

Author SHA1 Message Date
Sean Massa
323df334d6 Merge branch 'endangeredmassa/convert-cli-integration-tests' into endangeredmassa/cli-integration-ts 2023-03-09 01:42:52 -06:00
Sean Massa
b1dcc6d77b fix tests 2023-03-09 01:40:20 -06:00
Sean Massa
834443d8b9 convert to TS 2023-03-08 19:04:11 -06:00
Sean Massa
0d951e4e06 WIP 2023-03-08 18:47:05 -06:00
Sean Massa
02351fd372 PR feedback 2023-03-08 18:32:53 -06:00
Steven
f68c27f543 Apply suggestions from code review 2023-03-08 18:52:00 -05:00
Sean Massa
0f97f48abe restore testMatch 2023-03-08 17:19:00 -06:00
Sean Massa
391094f269 revert unrelated changes 2023-03-08 17:07:07 -06:00
Sean Massa
5abc0b3154 revert unrelated changes 2023-03-08 17:06:12 -06:00
Sean Massa
1577b2216e revert unrelated changes 2023-03-08 17:05:46 -06:00
Sean Massa
fa444cd16e Merge remote-tracking branch 'origin' into endangeredmassa/convert-cli-integration-tests 2023-03-08 17:03:24 -06:00
Sean Massa
0b5e469997 disable TS checks 2023-03-08 17:00:28 -06:00
Sean Massa
1938bca3c5 WIP 2023-03-07 12:23:24 -06:00
Sean Massa
bf8e5fbffd remote ava timeouts 2023-03-07 12:10:00 -06:00
Sean Massa
e01c6e159e WIP 2023-03-07 12:02:34 -06:00
4 changed files with 1001 additions and 2189 deletions

View File

@@ -14,7 +14,7 @@
"preinstall": "node ./scripts/preinstall.js",
"test": "jest --env node --verbose --bail",
"test-unit": "pnpm test test/unit/",
"test-cli": "rimraf test/fixtures/integration && ava test/integration.js --serial --fail-fast --verbose",
"test-cli": "rimraf test/fixtures/integration && pnpm test test/integration.test.ts",
"test-dev": "pnpm test test/dev/",
"coverage": "codecov",
"build": "ts-node ./scripts/build.ts",
@@ -28,15 +28,6 @@
"dist",
"scripts/preinstall.js"
],
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only",
"esm"
]
},
"engines": {
"node": ">= 14"
},
@@ -110,7 +101,6 @@
"async-listen": "1.2.0",
"async-retry": "1.1.3",
"async-sema": "2.1.4",
"ava": "2.2.0",
"bytes": "3.0.0",
"chalk": "4.1.0",
"chance": "1.1.7",

View File

@@ -96,7 +96,15 @@ module.exports = async function prepare(session, binaryPath, tmpFixturesDir) {
),
},
'dev-fail-on-recursion-command': {
'package.json': '{}',
'package.json': JSON.stringify(
{
scripts: {
dev: `${binaryPath} dev`,
},
},
null,
2
),
},
'build-fail-on-recursion-command': {
'package.json': '{}',

File diff suppressed because it is too large Load Diff

1386
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff