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
dc6ce37a
Commit
dc6ce37a
authored
Jun 29, 2013
by
Stefan Penner
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3 from teddyzeenny/fix_callback_assimilation
Run reduce tests only in node
parents
2158a5a9
dfa0a156
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 @
dc6ce37a
...
@@ -979,50 +979,56 @@ describe("RSVP extensions", function() {
...
@@ -979,50 +979,56 @@ describe("RSVP extensions", function() {
});
});
});
});
// thanks to @wizardwerdna for the test case -> https://github.com/tildeio/rsvp.js/issues/66
// thanks to @wizardwerdna for the test case -> https://github.com/tildeio/rsvp.js/issues/66
describe
(
"
using reduce to sum integers using promises
"
,
function
(){
// Only run these tests in node (phantomjs cannot handle them)
var
resolve
=
RSVP
.
resolve
;
if
(
typeof
module
!==
'
undefined
'
&&
module
.
exports
)
{
it
(
"
should build the promise pipeline without error
"
,
function
(){
describe
(
"
using reduce to sum integers using promises
"
,
function
(){
var
array
,
iters
,
pZero
,
i
;
var
resolve
=
RSVP
.
resolve
;
array
=
[];
it
(
"
should build the promise pipeline without error
"
,
function
(){
iters
=
1000
;
var
array
,
iters
,
pZero
,
i
;
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
array
=
[];
array
.
push
(
i
);
iters
=
1000
;
}
pZero
=
resolve
(
0
);
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
array
.
push
(
i
);
}
array
.
reduce
(
function
(
promise
,
nextVal
)
{
pZero
=
resolve
(
0
);
return
promise
.
then
(
function
(
currentVal
)
{
return
resolve
(
currentVal
+
nextVal
);
});
},
pZero
);
});
it
(
"
should get correct answer without blowing the nextTick stack
"
,
function
(
done
){
array
.
reduce
(
function
(
promise
,
nextVal
)
{
var
pZero
,
array
,
iters
,
result
,
i
;
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
=
[];
pZero
=
resolve
(
0
);
iters
=
1000
;
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
array
=
[];
array
.
push
(
i
);
iters
=
1000
;
}
result
=
array
.
reduce
(
function
(
promise
,
nextVal
)
{
for
(
i
=
1
;
i
<=
iters
;
i
++
)
{
return
promise
.
then
(
function
(
currentVal
)
{
array
.
push
(
i
);
return
resolve
(
currentVal
+
nextVal
);
}
});
},
pZero
);
result
=
array
.
reduce
(
function
(
promise
,
nextVal
)
{
return
promise
.
then
(
function
(
currentVal
)
{
return
resolve
(
currentVal
+
nextVal
);
});
},
pZero
);
result
.
then
(
function
(
value
){
result
.
then
(
function
(
value
){
assert
.
equal
(
value
,
(
iters
*
(
iters
+
1
)
/
2
));
assert
.
equal
(
value
,
(
iters
*
(
iters
+
1
)
/
2
));
done
();
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