Skip to content
Closed
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"start:project": "pnpm --filter plone run start",
"lint": "make build-all-deps && eslint --max-warnings=0 '{apps,packages}/**/*.{js,jsx,ts,tsx}'",
"lint:volto": "pnpm --filter @plone/volto run lint",
"test": "pnpm --filter @plone/volto run vitest",
"test": "pnpm --filter @plone/volto run test",
"test:ci": "pnpm --filter @plone/volto run test:ci",
"i18n": "pnpm --filter @plone/volto run i18n",
"i18n:ci": "pnpm --filter @plone/volto i18n:ci",
Expand Down
1 change: 1 addition & 0 deletions packages/volto/news/+make-test.internal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update the `make test` command to run `vitest`. @davisagli
3 changes: 1 addition & 2 deletions packages/volto/package-why.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"build:dist": "Description for `npm run build:dist` command",
"test": "Description for `npm run test` command",
"test:ci": "Description for `npm run test:ci` command",
"test:husky": "Description for `npm run test:husky` command",
"test:debug": "Description for `npm run test:debug` command",
"start:prod": "Description for `npm run start:prod` command",
"start:dist": "Description for `npm run start:dist` command",
Expand All @@ -31,4 +30,4 @@
"storybook": "Description for `npm run storybook` command",
"build-storybook": "Description for `npm run build-storybook` command"
}
}
}
6 changes: 2 additions & 4 deletions packages/volto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,9 @@
"start:coresandbox": "make build-deps && ADDONS=coresandbox razzle start",
"build": "make build-deps && razzle build --noninteractive",
"build:types": "tsc --project tsconfig.declarations.json",
"vitest": "vitest",
"coverage": "vitest run --coverage",
"test": "razzle test --maxWorkers=${MAX_WORKERS:-50%}",
"test:ci": "CI=true NODE_ICU_DATA=node_modules/full-icu razzle test",
"test:husky": "CI=true yarn test --bail --findRelatedTests",
"test": "vitest",
"test:ci": "CI=true NODE_ICU_DATA=node_modules/full-icu vitest",
"start:prod": "NODE_ENV=production node build/server.js",
"prettier": "prettier --single-quote --check '{src,cypress}/**/*.{js,jsx,ts,tsx}' --check '*.js'",
"prettier:fix": "prettier --single-quote --write '{src,cypress}/**/*.{js,jsx,ts,tsx}' --write '*.js'",
Expand Down
Loading