Compare commits

...

21 Commits

Author SHA1 Message Date
Sean Massa
c4773ae2cc add await 2023-03-09 12:00:01 -06:00
Sean Massa
74b3ee37c3 remove reject 2023-03-09 11:51:35 -06:00
Sean Massa
ada58cdaa3 add build script 2023-03-09 11:14:00 -06:00
Sean Massa
8de0df29f9 add --yes 2023-03-09 10:50:32 -06:00
Sean Massa
894ffe257d fix 2023-03-09 10:26:07 -06:00
Sean Massa
952d22b398 try without TTY 2023-03-09 09:59:19 -06:00
Sean Massa
3ad8dad740 fix 2023-03-09 09:53:37 -06:00
Sean Massa
2076a72038 Update packages/cli/test/integration.test.ts
Co-authored-by: Steven <steven@ceriously.com>
2023-03-09 09:27:56 -06:00
Sean Massa
446e9f4da2 revert changes to this test 2023-03-09 09:24:30 -06:00
Sean Massa
b1dcc6d77b fix tests 2023-03-09 01:40:20 -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 844 additions and 2124 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: {
build: 'echo "build script"',
},
}),
'vercel.json': JSON.stringify({
version: 2,
devCommand: `${binaryPath} dev`,
}),
},
'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