1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 12:13:45 +00:00
Files
browser/libs/playwright-scenes/project.json
Matt Gibson 5c19a7c9dd Create playwright scenes framework
This is a client-side implementation of the db recipes seeding framework for bitwarden server
2025-10-07 17:00:49 -07:00

41 lines
1.1 KiB
JSON

{
"name": "playwright-scenes",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/playwright-scenes/src",
"projectType": "library",
"tags": ["!dependsOn:common"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/playwright-scenes",
"main": "libs/playwright-scenes/src/index.ts",
"tsConfig": "libs/playwright-scenes/tsconfig.lib.json",
"assets": ["libs/playwright-scenes/*.md"],
"rootDir": "libs/playwright-scenes/src"
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/playwright-scenes/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/playwright-scenes/jest.config.js"
}
},
"e2e": {
"executor": "nx:run-commands",
"options": {
"command": "npx playwright test"
}
}
}
}