forked from tidev/node-appc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-haxm.js
More file actions
63 lines (49 loc) · 1.68 KB
/
test-haxm.js
File metadata and controls
63 lines (49 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
62
63
/**
* node-appc - Appcelerator Common Library for Node.js
* Copyright (c) 2009-2014 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
var appc = require('../index'),
assert = require('assert');
describe('haxm', function () {
it('namespace exists', function () {
appc.should.have.property('haxm');
appc.haxm.should.be.an.Object;
});
describe('#detect()', function () {
it('should return valid result without specifying a config or options', function (done) {
appc.haxm.detect(function (result) {
result.should.be.an.Object;
result.installed.should.be.a.Boolean;
if (result.memlimit !== null) {
result.memlimit.should.be.a.Number;
assert(result.memlimit >= 0, 'mem limit should be a positive integer')
}
done();
});
});
it('should return valid result with a config and without specifying options', function (done) {
appc.haxm.detect({}, function (result) {
result.should.be.an.Object;
result.installed.should.be.a.Boolean;
if (result.memlimit !== null) {
result.memlimit.should.be.a.Number;
assert(result.memlimit >= 0, 'mem limit should be a positive integer')
}
done();
});
});
it('should return valid result with a config and options', function (done) {
appc.haxm.detect({}, { bypassCache: true }, function (result) {
result.should.be.an.Object;
result.installed.should.be.a.Boolean;
if (result.memlimit !== null) {
result.memlimit.should.be.a.Number;
assert(result.memlimit >= 0, 'mem limit should be a positive integer')
}
done();
});
});
});
});