Skip to content

Commit 096d2e7

Browse files
committed
Add -r,--require documentation to README.md
This can probably be done better, but I think it covers all aspects of this feature.
1 parent d0ca885 commit 096d2e7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

readme.markdown

+20
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,26 @@ $ tape 'tests/**/*.js'
6464
$ tape "tests/**/*.js"
6565
```
6666

67+
## Preloading modules
68+
69+
Additionally, it is possible to make `tape` load one or more modules before running any tests, by using the `-r` or `--require` flag. Here's an example that loads [babel-register](http://babeljs.io/docs/usage/require/) before running any tests, to allow for JIT compilation:
70+
71+
```sh
72+
$ tape -r babel-register tests/**/*.js
73+
```
74+
75+
Depending on the module you're loading, you may be able to paramaterize it using environment variables or auxiliary files. Babel, for instance, will load options from [`.babelrc`](http://babeljs.io/docs/usage/babelrc/) at runtime.
76+
77+
The `-r` flag behaves exactly like node's `require`, and uses the same module resolution algorithm. This means that if you need to load local modules, you have to prepend their path with `./` or `../` accordingly.
78+
79+
For example:
80+
81+
```sh
82+
$ tape -r ./my/local/module tests/**/*.js
83+
```
84+
85+
Please note that modules that all modules loaded using the `-r` flag will run *before* any tests, regardless of when they are specified. For example, `tape -r a b -r c` will actually load `a` and `c` *before` loading `b`, since they are flagged as required modules.
86+
6787
# things that go well with tape
6888

6989
tape maintains a fairly minimal core. Additional features are usually added by using another module alongside tape.

0 commit comments

Comments
 (0)