Skip to content

Commit edfd052

Browse files
author
hongarc
committed
chore: use gulp instead of grunt
1 parent 17bce6b commit edfd052

21 files changed

+2035
-1501
lines changed

.jshintrc

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"esversion": 6,
3+
"curly": true,
4+
"eqeqeq": false,
5+
"regexp": false,
6+
"nonew": false,
7+
"latedef": false,
8+
"forin": false,
9+
"globalstrict": false,
10+
"node": true,
11+
"immed": true,
12+
"newcap": true,
13+
"noarg": true,
14+
"bitwise": true,
15+
"sub": true,
16+
"undef": true,
17+
"unused": true,
18+
"trailing": true,
19+
"devel": true,
20+
"jquery": true,
21+
"nonstandard": true,
22+
"boss": true,
23+
"eqnull": true,
24+
"browser": true,
25+
"debug": true,
26+
"globals": {
27+
"casper": true,
28+
"Raphael": true,
29+
"require": true,
30+
"console": true,
31+
"describe": true,
32+
"expect": true,
33+
"it": true,
34+
"runs": true,
35+
"waitsFor": true,
36+
"exports": true,
37+
"module": true,
38+
"prompt": true,
39+
"process": true
40+
}
41+
}

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ cache:
1212
- "node_modules"
1313
script:
1414
- ./checkgit.sh "Source files were modified before build; is yarn.lock out of sync with package.json?" || travis_terminate $?
15-
- yarn grunt
15+
- yarn gulp
1616
- ./checkgit.sh "Source files were modified by the build" || travis_terminate $?

Gruntfile.js

-252
This file was deleted.

__tests__/base.js

+9-58
Original file line numberDiff line numberDiff line change
@@ -32,61 +32,21 @@ var expectLevelAsync = function(headless, levelBlob) {
3232
return;
3333
}
3434

35-
var hasWarned = false;
36-
var start;
37-
runs(function() {
38-
start = Date.now();
39-
headless.sendCommand(command);
35+
return headless.sendCommand(command).then(function() {
36+
expect(compareLevelTree(headless, levelBlob)).toBeTruthy();
4037
});
41-
waitsFor(function() {
42-
var diff = (Date.now() - start);
43-
if (diff > TIME - 10 && !hasWarned) {
44-
hasWarned = true;
45-
console.log('this goal tree', loadTree(levelBlob.goalTreeString));
46-
console.log('not going to match with command', command);
47-
console.log(getHeadlessSummary(headless));
48-
}
49-
var result = compareLevelTree(headless, levelBlob);
50-
if (result) {
51-
console.log('solved level ' + levelBlob.name.en_US);
52-
}
53-
return result;
54-
}, 'trees should be equal', TIME);
5538
};
5639

5740
var expectTreeAsync = function(command, expectedJSON, startJSON) {
5841
var headless = new HeadlessGit();
59-
var start = Date.now();
60-
var haveReported = false;
6142

6243
if (startJSON) {
6344
headless.gitEngine.loadTreeFromString(startJSON);
6445
}
6546

66-
runs(function() {
67-
headless.sendCommand(command);
47+
return headless.sendCommand(command).then(function() {
48+
expect(compareAnswer(headless, expectedJSON)).toBeTruthy();
6849
});
69-
waitsFor(function() {
70-
var diff = (Date.now() - start);
71-
if (diff > TIME - 40 && !haveReported) {
72-
haveReported = true;
73-
var expected = loadTree(expectedJSON);
74-
console.log('not going to match', command);
75-
console.log('expected\n>>>>>>>>\n', expected);
76-
console.log('\n<<<<<<<<<<<\nactual', getHeadlessSummary(headless));
77-
console.log('\n<<<<ORIGIN>>>>>\n');
78-
if (expected.originTree) {
79-
console.log('expected origin tree:');
80-
console.log(expected.originTree);
81-
console.log('\n=========\n');
82-
console.log('actual origin tree');
83-
console.log(getHeadlessSummary(headless).originTree);
84-
}
85-
console.log(expectedJSON);
86-
console.log(JSON.stringify(getHeadlessSummary(headless)));
87-
}
88-
return compareAnswer(headless, expectedJSON);
89-
}, 'trees should be equal', 500);
9050
};
9151

9252
var expectLevelSolved = function(levelBlob) {
@@ -102,20 +62,12 @@ var runCommand = function(command, resultHandler) {
10262
var deferred = Q.defer();
10363
var msg = null;
10464

105-
deferred.promise.then(function(commands) {
106-
msg = commands[commands.length - 1].get('error').get('msg');
65+
return headless.sendCommand(command, deferred).then(function() {
66+
return deferred.promise.then(function(commands) {
67+
msg = commands[commands.length - 1].get('error').get('msg');
68+
resultHandler(msg);
69+
});
10770
});
108-
109-
runs(function() {
110-
headless.sendCommand(command, deferred);
111-
});
112-
waitsFor(function() {
113-
if(null == msg) {
114-
return false;
115-
}
116-
resultHandler(msg);
117-
return true;
118-
}, 'commands should be finished', 500);
11971
};
12072

12173
var TIME = 150;
@@ -131,4 +83,3 @@ module.exports = {
13183
ONE_COMMIT_TREE: ONE_COMMIT_TREE,
13284
runCommand: runCommand
13385
};
134-

0 commit comments

Comments
 (0)