Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rsvp.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Romain Courteaud
rsvp.js
Commits
dfa0a156
Commit
dfa0a156
authored
Jun 29, 2013
by
Teddy Zeenny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run reduce tests only in node
parent
2158a5a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
33 deletions
+39
-33
test/tests/extension_test.js
test/tests/extension_test.js
+39
-33
No files found.
test/tests/extension_test.js
View file @
dfa0a156
...
...
@@ -979,50 +979,56 @@ describe("RSVP extensions", function() {
});
});
// thanks to @wizardwerdna for the test case -> https://github.com/tildeio/rsvp.js/issues/66
describe
(
"
using reduce to sum integers using promises
"
,
function
(){
var
resolve
=
RSVP
.
resolve
;
// Only run these tests in node (phantomjs cannot handle them)
if
(
typeof
module
!==
'
undefined
'
&&
module
.
exports
)
{
it
(
"
should build the promise pipeline without error
"
,
function
(){
var
array
,
iters
,
pZero
,
i
;
describe
(
"
using reduce to sum integers using promises
"
,
function
(){
var
resolve
=
RSVP
.
resolve
;
array
=
[];
iters
=
1000
;
it
(
"
should build the promise pipeline without error
"
,
function
(){
var
array
,
iters
,
pZero
,
i
;
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
array
.
push
(
i
);
}
array
=
[];
iters
=
1000
;
pZero
=
resolve
(
0
);
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
array
.
push
(
i
);
}
array
.
reduce
(
function
(
promise
,
nextVal
)
{
return
promise
.
then
(
function
(
currentVal
)
{
return
resolve
(
currentVal
+
nextVal
);
});
},
pZero
);
});
pZero
=
resolve
(
0
);
it
(
"
should get correct answer without blowing the nextTick stack
"
,
function
(
done
){
var
pZero
,
array
,
iters
,
result
,
i
;
array
.
reduce
(
function
(
promise
,
nextVal
)
{
return
promise
.
then
(
function
(
currentVal
)
{
return
resolve
(
currentVal
+
nextVal
);
});
},
pZero
);
});
pZero
=
resolve
(
0
);
it
(
"
should get correct answer without blowing the nextTick stack
"
,
function
(
done
){
var
pZero
,
array
,
iters
,
result
,
i
;
array
=
[];
iters
=
1000
;
pZero
=
resolve
(
0
);
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
array
.
push
(
i
);
}
array
=
[];
iters
=
1000
;
result
=
array
.
reduce
(
function
(
promise
,
nextVal
)
{
return
promise
.
then
(
function
(
currentVal
)
{
return
resolve
(
currentVal
+
nextVal
);
});
},
pZero
);
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
array
.
push
(
i
);
}
result
=
array
.
reduce
(
function
(
promise
,
nextVal
)
{
return
promise
.
then
(
function
(
currentVal
)
{
return
resolve
(
currentVal
+
nextVal
);
});
},
pZero
);
result
.
then
(
function
(
value
){
assert
.
equal
(
value
,
(
iters
*
(
iters
+
1
)
/
2
));
done
();
result
.
then
(
function
(
value
){
assert
.
equal
(
value
,
(
iters
*
(
iters
+
1
)
/
2
));
done
();
});
});
});
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment