vitest/test/browser/package.json
renovate[bot] 9fe0f3df9d
chore(deps): update all non-major dependencies (#7929)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ari Perkkiö <ari.perkkio@gmail.com>
Co-authored-by: Vladimir Sheremet <sleuths.slews0s@icloud.com>
2025-05-20 14:57:32 +02:00

44 lines
1.9 KiB
JSON

{
"name": "@vitest/test-browser",
"type": "module",
"private": true,
"scripts": {
"test": "pnpm run test:webdriverio && pnpm run test:playwright",
"test:unit": "vitest --no-watch --config=vitest.config.unit.mts",
"test:webdriverio": "PROVIDER=webdriverio pnpm run test:unit",
"test:playwright": "PROVIDER=playwright pnpm run test:unit",
"test:safaridriver": "PROVIDER=webdriverio BROWSER=safari pnpm run test:unit",
"test-fixtures": "vitest",
"test-expect-dom": "vitest --root ./fixtures/expect-dom",
"test-mocking": "vitest --root ./fixtures/mocking",
"test-timeout": "vitest --root ./fixtures/timeout",
"test-mocking-watch": "vitest --root ./fixtures/mocking-watch",
"test-locators": "vitest --root ./fixtures/locators",
"test-locators-custom": "vitest --root ./fixtures/locators-custom",
"test-different-configs": "vitest --root ./fixtures/multiple-different-configs",
"test-setup-file": "vitest --root ./fixtures/setup-file",
"test-snapshots": "vitest --root ./fixtures/update-snapshot",
"coverage": "vitest --coverage.enabled --coverage.provider=istanbul --browser.headless=yes",
"test:browser:preview": "PROVIDER=preview vitest",
"test:browser:playwright": "PROVIDER=playwright vitest",
"test:browser:webdriverio": "PROVIDER=webdriverio vitest",
"test:browser:playwright:html": "PROVIDER=playwright vitest --reporter=html"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/react": "^19.1.4",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"@vitest/browser": "workspace:*",
"@vitest/bundled-lib": "link:./bundled-lib",
"@vitest/cjs-lib": "link:./cjs-lib",
"@vitest/injected-lib": "link:./injected-lib",
"playwright": "^1.52.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"url": "^0.11.4",
"vitest": "workspace:*",
"vitest-browser-react": "^0.2.0",
"ws": "catalog:"
}
}