File: buster.js

package info (click to toggle)
node-when 3.7.8%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 820 kB
  • sloc: makefile: 16; sh: 5
file content (19 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
exports.node = {
	environment: 'node',
	rootPath: '../',
	tests: [
		'test/**/*-test.js'
	]
};

exports.browser = {
	environment: 'browser',
	rootPath: '..',
	tests: [
		'test/browser/tests.js'
	],
	resources: [
		'test/browser/es5.js'
	],
	testbed: 'test/browser/index.html'
};