Testing experiments on the Peepcode Ordr EmberJS Application
See: Peepcode EmberJS Screencast.
The Ordr application in the Peepcode screencast is a perfect application to experiment upon:
- Small
- 85 lines of Javascript
- <100 lines of HTML/templating
- Sophisticated
- 5 classes
- Key relationships
- Exploits EmberJS features (which it should since it's an EmberJS tutorial!)
Hence, it's a reasonable "smallest realistic" Ember app to "play with". So here we're playing with JS Karma as the test runner to run integration tests on the Ordr application.
We're going to be testing numerous different testing metaphors and will be documenting them as we go along. Please offer suggestions/ feedback/etc and/or come join us!
-
Clone this application into your favorite work directory:
git clone git@github.com:OC-Emberjs/peepcode-ordr-test.git
-
Install JS Karma.
Karma config expects Firefox and Chrome installed.
-
In a console window:
cd peepcode-ordr-test karma start
At this point, we have test scripts here:
tests/integration/*
And the App sits at:
app/*
Thanks to:
- Peepcode for giving permission to use their Ordr application. Highly recommend their screencast.
- Bill Heaton for his PRs.