Browse Source

Comment waitForSelector test while the feature is broken

Gaël Métais 10 years ago
parent
commit
74deba61e6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/api/apiTest.js

+ 2 - 2
test/api/apiTest.js

@@ -98,7 +98,7 @@ describe('api', function() {
                 waitForResponse: true,
                 screenshot: true,
                 device: 'tablet',
-                waitForSelector: '*',
+                //waitForSelector: '*',
                 cookie: 'foo=bar',
                 authUser: 'joe',
                 authPass: 'secret'
@@ -171,7 +171,7 @@ describe('api', function() {
 
                 // Check if settings are correctly sent and retrieved
                 body.params.options.should.have.a.property('device').that.equals('tablet');
-                body.params.options.should.have.a.property('waitForSelector').that.equals('*');
+                //body.params.options.should.have.a.property('waitForSelector').that.equals('*');
                 body.params.options.should.have.a.property('cookie').that.equals('foo=bar');
                 body.params.options.should.have.a.property('authUser').that.equals('joe');
                 body.params.options.should.have.a.property('authPass').that.equals('secret');