This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds jobs for testing webkit and webkit-webworker (#487)
To use in a project, declare npm scripts similar to `test:firefox` and `test:firefox-webworker`: ```js // package.json // ... other stuff "scripts": { // ... other stuff "test:firefox": "aegir test -t browser -f ./dist/test/browser.js -- --browser firefox", "test:firefox-webworker": "aegir test -t webworker -f ./dist/test/browser.js -- --browser firefox", "test:webkit": "aegir test -t browser -f ./dist/test/browser.js -- --browser webkit", "test:webkit-webworker": "aegir test -t webworker -f ./dist/test/browser.js -- --browser webkit", } // ... other stuff ```
- Loading branch information