forked from angular/angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-aplus-tests.html
72 lines (54 loc) · 1.84 KB
/
run-aplus-tests.html
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
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Promise/A+ Tests</title>
<link rel="stylesheet" href="node_modules/mocha/mocha.css">
</head>
<body ng-app="runTests">
<div id="mocha"></div>
<script src="node_modules/mocha/mocha.js"></script>
<script>
mocha.setup('bdd');
</script>
<script src="promise-aplus-tests.js"></script>
<script src="build/angular.js"></script>
<script type="text/javascript">
angular.module('runTests',[])
.factory('promiseAdapter',function($q,$rootScope){
function applyLater(){
setTimeout(function(){
$rootScope.$apply();
},30)
}
return {
$q:$q,
rejected: function(reason){
var deferred = $q.defer();
deferred.reject(reason);
// applyLater();
return deferred.promise;
},
fulfilled: function(value){
var deferred = $q.defer();
deferred.resolve(value);
//applyLater();
return deferred.promise;
},
pending : function(){
var deferred = $q.defer();
//applyLater();
return {
promise: deferred.promise,
fulfill: deferred.resolve,
reject: deferred.reject
};
}
};
}).run(function(promiseAdapter){
console.log('hello: ',promiseAdapter.$q) ;
PromisesAplusTests.mocha(promiseAdapter);
mocha.run();
});
</script>
</body>
</html>