235bb64358
JS packaging is complicated and testing it manually is irritating. Add a tool in `automerge-js/e2e` which stands up a local NPM registry and publishes the various packages to that registry for use in automated and manual tests. Update the test script in `scripts/ci/js_tests` to run the tests using this tool
9 lines
379 B
Text
Executable file
9 lines
379 B
Text
Executable file
THIS_SCRIPT=$(dirname "$0");
|
|
E2E_PROJECT=$THIS_SCRIPT/../../automerge-js/e2e;
|
|
WASM_PROJECT=$THIS_SCRIPT/../../automerge-wasm;
|
|
|
|
# This takes care of publishing the correct version of automerge-types in
|
|
# a local NPM registry and calling yarn install with that registry available
|
|
yarn --cwd $E2E_PROJECT install
|
|
yarn --cwd $E2E_PROJECT e2e buildwasm
|
|
yarn --cwd $WASM_PROJECT test;
|