Browser Test
![Build Status](https://travis-ci.org/lightsofapollo/browser-test.png?branch=master)
Browser test is in alpha phase... the intent is to provide the best possible out
of the box testing experience for browsers (just firefox right now) with
minimal magic and easy client interface so everyone can use their
existing framework.
The basic workflow should look like this:
$ browser-test file.js
1..2
ok 1 start one
ok 2 start two
A fresh browser is created for each test (and currently only one test
per invocation).
Usage
browser-test <file.js>
To be super useful you usually need an entrypoint html file which will
glue the harness to your existing test framework for a complete
entrypoint see /test/browser/entrypoint.html.
browser-test --entrypoint entrypoint.html test.js
For ease of use command line flags can be added to browser-test.opts
and will be used for every invocation of browser-test in that directory.
Why this exists
The browser-test
package is an early prototype of concepts I thought
of as test-agent 2
(test-agent is the unit test runner used by
FirefoxOS's gaia project).
The original test-agent had many features and used many levels of
indirection to facilitate domain (as in foobar.com) level isolation of
tests. Tests within the same domain (app) could effect another tests
causing many intermittent test problems as our apps grew larger (and due
to poorly written/leaky tests).
"Browser Test" handles things very differently:
Developing
Build the project:
npm install
make
Test the project:
npm install
make test