-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
51 lines (42 loc) · 1.05 KB
/
package.js
File metadata and controls
51 lines (42 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Package.describe({
summary: 'Helpers for Testing Space Applications and Modules.',
name: 'space:testing',
version: '3.0.2',
git: 'https://github.com/meteor-space/testing.git',
debugOnly: true
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use([
'coffeescript',
'underscore',
'reactive-var',
'reactive-dict',
'tracker',
'check',
'practicalmeteor:munit@2.1.5'
]);
api.addFiles([
'source/helpers/is-subclass.coffee',
'source/assertions/depend_on.coffee',
'source/assertions/extend.coffee',
'source/assertions/to_match.coffee',
'source/assertions/match-array-of-structs.coffee',
'source/assertions/contain-array-of-structs.coffee'
]);
});
Package.onTest(function(api) {
api.use([
'coffeescript',
'check',
'mongo',
'underscore',
'space:testing',
'practicalmeteor:munit@2.1.5'
]);
api.addFiles([
'tests/assertions/depend_on.integration.coffee',
'tests/assertions/extend.spec.coffee',
'tests/assertions/to_match.integration.coffee'
]);
});