UNPKG
example-runner
Version:
latest (0.2.0)
0.2.0
0.1.0
0.0.3
0.0.2
0.0.1
Runner for example files, usually tests.
github.com/square/example-runner
square/example-runner
example-runner
/
test
/
examples
/
reads_options.js
7 lines
(5 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
/* optgroup1 a:b, foo: true */
/* optgroup2 n:1 */
assert
.strictEqual(__options.optgroup1.a,
'b'
);
assert
.strictEqual(__options.optgroup1.foo,
true
);
assert
.strictEqual(__options.optgroup2.n,
1
);