 Issue 29890620:
  Noissue - Simplified qunit test wrapper  (Closed)
    
  
    Issue 29890620:
  Noissue - Simplified qunit test wrapper  (Closed) 
  | Left: | ||
| Right: | 
| LEFT | RIGHT | 
|---|---|
| 1 /* | 1 /* | 
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH | 
| 4 * | 4 * | 
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify | 
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as | 
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. | 
| 8 * | 8 * | 
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, | 
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. | 
| 13 * | 13 * | 
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License | 
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 
| 16 */ | 16 */ | 
| 17 | 17 | 
| 18 "use strict"; | 18 "use strict"; | 
| 19 | 19 | 
| 20 const {By, until} = require("selenium-webdriver"); | 20 const {By, until} = require("selenium-webdriver"); | 
| 21 const assert = require("assert"); | 21 const assert = require("assert"); | 
| 22 | 22 | 
| 23 it("qunit", function() | 23 it("qunit", function() | 
| 24 { | 24 { | 
| 25 return this.driver.navigate().to(this.origin + "/qunit/index.html").then(() => | 25 return this.driver.navigate().to(this.origin + "/qunit/index.html").then(() => | 
| 26 this.driver.wait(until.elementLocated(By.id("qunit-testresult"))) | 26 this.driver.wait(until.elementLocated(By.id("qunit-testresult"))) | 
| 27 ).then(elem => | 27 ).then(elem => | 
| 
Sebastian Noack
2018/09/24 18:56:05
.wait(until.elementLocated(...)) returns a promise
 | |
| 28 this.driver.wait(until.elementTextContains(elem, "Tests completed")) | 28 this.driver.wait(until.elementTextContains(elem, "Tests completed")) | 
| 
Sebastian Noack
2018/09/24 18:56:05
There is a pre-defined condition to wait for an el
 | |
| 29 ).then(() => | 29 ).then(() => | 
| 30 this.driver.findElement(By.css("#qunit-tests .fail .test-name")).then( | 30 this.driver.findElement(By.css("#qunit-tests .fail .test-name")).then( | 
| 31 elem => elem.getAttribute("textContent").then(name => assert.fail(name)), | 31 elem => elem.getAttribute("textContent").then(name => assert.fail(name)), | 
| 
Sebastian Noack
2018/09/24 18:56:05
Mocha only reports the first failure, it doesn't r
 | |
| 32 () => null | 32 () => null | 
| 33 ) | 33 ) | 
| 34 ) | 34 ); | 
| 35 }); | 35 }); | 
| LEFT | RIGHT |