Ember.js is a JavaScript framework that does all of the heavy lifting that you'd normally have to do by hand. There are tasks that are common to every web app; Ember.js does those things for you, so you can focus on building killer features and UI.
npm install
to ensure the required dependencies are installed.npm run build
to build Ember.js. The builds will be placed in the dist/
directory.See CONTRIBUTING.md
Follow the setup steps listed above under Building Ember.js.
To start the development server, run npm start
.
To run all tests, visit http://localhost:4200/.
To test a specific package, visit http://localhost:4200/tests/index.html?package=PACKAGE_NAME
. Replace
PACKAGE_NAME
with the name of the package you want to test. For
example:
To test multiple packages, you can separate them with commas.
You can also pass jquery=VERSION
in the test URL to test different
versions of jQuery.
Install phantomjs from http://phantomjs.org.
Run npm test
to run a basic test suite or run TEST_SUITE=all npm test
to
run a more comprehensive suite.
ember test --server
./bin/connect-phantom-to <optional-port>
To run a specific browser, you can use the --launch
flag
ember test --server --launch SL_Firefox_Current
ember test --launch SL_Firefox_Current