Files
cypress/packages/extension/README.md
Ben Kucera 47faf52e16 internal: use yarn workspace over lerna for individual package commands (#7644)
* use yarn workspace over lerna for individual package commands

* remove usage of wait-on

* fix readmes after regex replace

* revert wait-on changes

* update yarn.lock
2020-06-10 18:31:40 -04:00

720 B

Extension

This is the WebExtension responsible for automating the browser

Developing

Watching

yarn workspace @packages/extension watch

Building

yarn workspace @packages/extension build

Testing

yarn workspace @packages/extension test
yarn workspace @packages/extension test-watch
yarn workspace @packages/extension test-debug

Debugging

In Chrome

  1. Open Chrome
  2. Go into Extensions
  3. Check Developer Mode
  4. Click Load unpacked extension...
  5. Choose packages/extension/dist directory
  6. Click background page to debug background.js
  7. Click Reload (⌘R) to pull in changes to manifest.json

In Firefox

To be written...