Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: README.md

Issue 29367181: Issue 4726 - Add tests for the element hiding emulation content script (Closed) Base URL: https://bitbucket.org/fhd/adblockpluscore
Patch Set: Add license header Created Jan. 10, 2017, 9:16 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | package.json » ('j') | test_runner.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.md
===================================================================
--- a/README.md
+++ b/README.md
@@ -4,14 +4,29 @@
This repository contains the generic Adblock Plus code that's shared between
platforms. This repository is not designed to be used directly, but instead to
serve as a dependency for `adblockplus`, `adblockpluschrome` and
`libadblockplus`.
Running the unit tests
----------------------
+### Requirements
+
In order to run the unit test suite you need
[Node.js 6 or higher](https://nodejs.org/). Once Node.js is installed please run
`npm install` in the repository directory in order to install the required
-dependencies. After that you can run `npm test` which will execute all tests
-in the `test` directory of the repository. You can also specify specific test
-files on the command line, e.g. `npm test test/synchronizer.js`.
+dependencies.
+
+### Running all tests
+
+`npm test` will run all tests in the `test` directory of the repository.
+
+### Running specific tests
+
+You can specify specific test files or directories on the command line, e.g.:
+`npm test test/synchronizer.js`.
kzar 2017/01/10 11:05:33 Mind also giving an example that runs both a unit
Felix Dahlke 2017/01/17 19:41:08 Sure, I've just updated the one example to invoke
kzar 2017/01/18 04:17:15 Oh, I had assumed that the node-qunit-phantomjs al
+
+### Running the browser tests in a real browser
+
+The tests under `test/browser` require a browser environment. `npm test` will
+run these in a headless browser, but you can also run them in a real one by
+opening `test/browser/index.html`.
kzar 2017/01/10 11:05:33 Since the browser tests don't have a build step I
Felix Dahlke 2017/01/17 19:41:08 Cool idea, done!
« no previous file with comments | « no previous file | package.json » ('j') | test_runner.js » ('J')

Powered by Google App Engine
This is Rietveld