mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
3f2c0590f1
**What kind of change does this PR introduce?** It introduces schematic for Angular that integrate with its CLI. First revision support Jasmine. **Did you add tests for your changes?** Added Unit tests for each scenario. **Summary** The idea is to provide a an example for setting up Puppeteer and Angular for testing user flows. **Does this PR introduce a breaking change?** No **Other information** For Feature PRs: - Introduce CL for tests - Hook up NPM package publishing - Update README.md
11 lines
213 B
JSON
11 lines
213 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "test/src/",
|
|
"outDir": "test/build/",
|
|
"types": ["node", "mocha"]
|
|
},
|
|
"include": ["test/**/*"],
|
|
"exclude": ["test/build/**/*"]
|
|
}
|