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

Side by Side 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: Rebased on master, added tests for braces in regexp property selectors Created Dec. 13, 2016, 5:26 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | package.json » ('j') | package.json » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Adblock Plus core 1 Adblock Plus core
2 ================= 2 =================
3 3
4 This repository contains the generic Adblock Plus code that's shared between 4 This repository contains the generic Adblock Plus code that's shared between
5 platforms. This repository is not designed to be used directly, but instead to 5 platforms. This repository is not designed to be used directly, but instead to
6 serve as a dependency for `adblockplus`, `adblockpluschrome` and 6 serve as a dependency for `adblockplus`, `adblockpluschrome` and
7 `libadblockplus`. 7 `libadblockplus`.
8 8
9 Running the unit tests 9 Running the unit tests
10 ---------------------- 10 ----------------------
11 11
12 ### Requirements
kzar 2017/01/09 08:28:42 If switching to this syntax for the headers mind u
Felix Dahlke 2017/01/10 09:16:47 Markdown only has the underlined syntax for level
kzar 2017/01/10 11:05:33 Well you're right the need for the different level
13
12 In order to run the unit test suite you need 14 In order to run the unit test suite you need
13 [Node.js 6 or higher](https://nodejs.org/). Once Node.js is installed please run 15 [Node.js 6 or higher](https://nodejs.org/). Once Node.js is installed please run
14 `npm install` in the repository directory in order to install the required 16 `npm install` in the repository directory in order to install the required
15 dependencies. After that you can run `npm test` which will execute all tests 17 dependencies.
16 in the `test` directory of the repository. You can also specify specific test 18
17 files on the command line, e.g. `npm test test/synchronizer.js`. 19 ### Running all tests
20
21 `npm test` will run all tests in the `test` directory of the repository.
22
23 ### Node.js tests
kzar 2017/01/09 08:28:42 I'd prefer to call these unit tests rather than No
Felix Dahlke 2017/01/10 09:16:47 I'll rewrite this section when removing the `test-
24
25 `npm run test-node` will only run the tests that work in a Node.js environment.
26
27 You can specify specific test files on the command line, e.g.
28 `npm run test-node test/synchronizer.js`.
29
30 ### Browser tests
31
32 `npm run test-browser` will only run the tests that require a browser
33 environment.
34
35 You can run these tests in a real browser by opening `test/browser/index.html`.
OLDNEW
« no previous file with comments | « no previous file | package.json » ('j') | package.json » ('J')

Powered by Google App Engine
This is Rietveld