Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 In order to run the unit test suite you need | 12 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 | 13 [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 | 14 `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 | 15 dependencies. After that you can run `npm test` which will execute all tests |
16 in the `test` directory of the repository. | 16 in the `test` directory of the repository. You can also specify specific test |
kzar
2016/10/06 05:13:37
Mind mentioning that you can also give `npm test`
Wladimir Palant
2016/10/06 07:13:59
Done.
| |
17 files on the command line, e.g. `npm test test/synchronizer.js`. | |
LEFT | RIGHT |