Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"rebuild:native": "./scripts/rebuild-native.sh",
"test": "yarn pretest && vitest run",
"test:ci": "vitest run --coverage false",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "turbo run test:dev",
"test:dev:quiet": "turbo run test:dev:quiet --output-logs=errors-only",
"test:e2e": "yarn workspaces foreach --all run test:e2e",
"test:e2e:ci": "yarn workspaces foreach --all run test:e2e:ci",
"test:e2e:local": "yarn workspaces foreach --all run test:e2e:local",
Expand Down
5 changes: 3 additions & 2 deletions packages/brow-2-brow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@
"lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '!**/CHANGELOG.old.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path ../../.gitignore --log-level error",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts",
"start": "npm run build:dev && esbuild src/index.js --serve --sourcemap --bundle --outdir=dist --servedir=dist --external:@types/web",
"start:relay": "node dist/src/relay.mjs"
"start:relay": "node dist/src/relay.mjs",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.1.3",
Expand Down
1 change: 1 addition & 0 deletions packages/brow-2-brow/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export default defineConfig((args) => {
test: {
name: 'brow2brow',
exclude: ['**/test/integration/**'],
passWithNoTests: true,
},
}),
);
Expand Down
5 changes: 3 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts"
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^16.1.3",
Expand Down
5 changes: 3 additions & 2 deletions packages/create-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,14 @@
"test": "vitest run --config vitest.config.ts",
"test:build": "tsx ./test/build/build-tests.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts",
"test:e2e": "yarn playwright test",
"test:e2e:ci": "./scripts/test-e2e-ci.sh",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
"test:e2e:debug": "playwright test --debug",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@metamask/kernel-browser-runtime": "workspace:^",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-agents-repl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-agents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-browser-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@
"test": "vitest run --config vitest.config.ts",
"test:build": "tsx ./test/build-tests.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@endo/marshal": "^1.8.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@libp2p/interface": "2.11.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-language-model-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@
"test": "vitest run --config vitest.config.ts",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-platforms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-rpc-methods/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@endo/promise-kit": "^1.1.13",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-shims/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@endo/eventual-send": "^1.3.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@metamask/logger": "workspace:^",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-test-local/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
"test": "vitest run --config vitest.config.ts",
"test:e2e:local": "vitest run --config vitest.config.e2e.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@metamask/logger": "workspace:^",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@agoric/store": "0.9.3-u21.0.1",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@metamask/design-system-react": "^0.1.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/kernel-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@endo/captp": "^4.4.8",
Expand Down
5 changes: 3 additions & 2 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@metamask/kernel-utils": "workspace:^",
Expand Down
5 changes: 3 additions & 2 deletions packages/nodejs-test-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
Expand Down
1 change: 1 addition & 0 deletions packages/nodejs-test-workers/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default defineConfig((args) => {
defineProject({
test: {
name: 'nodejs-test-workers',
passWithNoTests: true,
},
}),
);
Expand Down
5 changes: 3 additions & 2 deletions packages/nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"test:e2e:ci": "./scripts/test-e2e-ci.sh",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@endo/eventual-send": "^1.3.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/ocap-kernel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@agoric/swingset-liveslots": "0.10.3-u21.0.1",
Expand Down
5 changes: 3 additions & 2 deletions packages/omnium-gatherum/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@
"test": "vitest run --config vitest.config.ts",
"test:build": "tsx ./test/build/build-tests.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts",
"test:e2e": "yarn playwright test",
"test:e2e:ci": "./scripts/test-e2e-ci.sh",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
"test:e2e:debug": "playwright test --debug",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@metamask/kernel-browser-runtime": "workspace:^",
Expand Down
5 changes: 3 additions & 2 deletions packages/remote-iterables/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
"publish:preview": "yarn npm publish --tag preview",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@endo/eventual-send": "^1.3.4",
Expand Down
5 changes: 3 additions & 2 deletions packages/repo-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@
"lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '!**/CHANGELOG.old.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path ../../.gitignore --log-level error",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"devDependencies": {
"@metamask/eslint-config": "^15.0.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/streams/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@
"postinstall": "../../scripts/playwright-install.sh",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
"test:dev": "yarn test --mode development",
"test:verbose": "yarn test --reporter verbose",
"test:watch": "vitest --config vitest.config.ts"
"test:watch": "vitest --config vitest.config.ts",
"test:dev:quiet": "yarn test:dev --reporter dot"
},
"dependencies": {
"@endo/promise-kit": "^1.1.13",
Expand Down
Loading
Loading