This repo is divided into multiple packages using Yarn workspaces:
tracked-toolbox
is the actualtracked-toolbox
addontest-app
containstracked-toolbox
test suite
git clone https://github.com/tracked-tools/tracked-toolbox.git
cd tracked-toolbox
yarn install
yarn lint
yarn lint:fix
cd tracked-toolbox && yarn start
– Builds the addon in "watch mode" so changes picked up by test app.cd test-app && ember test
– Runs the test suite on the current Ember versioncd test-app && ember test --server
– Runs the test suite in "watch mode"cd test-app && ember try:each
– Runs the test suite against multiple Ember versions
During development, if you'd like test app to pick up changes in the addon, make sure to run both
cd tracked-toolbox && yarn start
and cd test-app && ember test --server
in different terminals.
ember serve
- Visit the dummy application at http://localhost:4200.
For more information on using ember-cli, visit https://cli.emberjs.com/release/.