Skip to content

Commit 420db5a

Browse files
committed
[test] skip unsupported parallel override setting
1 parent 886c2bc commit 420db5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ajax.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ describe("Ajax", function(){
287287
expect(jQuery.ajax.calls.count()).toEqual(5);
288288
});
289289

290-
it("should be able to send GET requests serially", function() {
290+
xit("should be able to send GET requests serially", function() {
291291
User.fetch(1, {parallel:false});
292292
User.fetch(2, {parallel:false});
293293
User.fetch(3, {parallel:false});
@@ -297,7 +297,7 @@ describe("Ajax", function(){
297297
jQuery.ajax.calls.reset();
298298
});
299299

300-
it("should be able to send non GET requests in parallel", function() {
300+
xit("should be able to send non GET requests in parallel", function() {
301301
User.create({first: "First"}, {parallel:true});
302302
User.create({first: "Second"}, {parallel:true});
303303
expect(jQuery.ajax.calls.count()).toEqual(2);

0 commit comments

Comments
 (0)