mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
* Add Puppeteer testing tutorial * Use Jest as test runner * Add comment on changing headless mode
15 lines
227 B
JSON
15 lines
227 B
JSON
{
|
|
"name": "puppeteer-demo",
|
|
"version": "1.0",
|
|
"dependencies": {
|
|
"jest": "^29.7.0",
|
|
"puppeteer": "^21.3.6"
|
|
},
|
|
"scripts": {
|
|
"start": "jest ."
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0"
|
|
}
|
|
}
|