Skip to content

Add testing in browsers #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jan 27, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Add test coverage
  • Loading branch information
denis-sokolov committed Jan 21, 2021
commit 192fe2427a1a253612e164c118b51de40e9238e3
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**/node_modules
**/package-lock.json

coverage.*
/.nyc_output

**/.DS_Store
**/._*
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"benchmark": "cd benchmarks && npm install && npm run all",
"test": "standard && tape test.js",
"test": "standard && nyc tape test.js",
"test-in-browsers": "airtap test.js"
},
"repository": {
Expand All @@ -28,6 +28,7 @@
"devDependencies": {
"airtap": "^4.0.1",
"airtap-playwright": "^1.0.1",
"nyc": "^14.1.1",
"playwright": "^1.7.1",
"standard": "^16.0.0",
"tape": "^5.1.1"
Expand Down