1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-07-01 02:19:09 +00:00
twemoji/testrunner.js
2016-02-28 18:22:34 +00:00

48 lines
1.6 KiB
JavaScript

var
webpage = require('webpage'),
urls = [
'2/test/index.html',
'test.html'
]
;
(function test() {'use strict';
var page, url = urls.shift();
if (!url) return phantom.exit(0);
console.log('Loading: ' + url);
page = webpage.create();
page.open(url, function (status) {
if (status === 'success') {
setTimeout(function () {
var results = page.evaluate(function() {
// remove the first node with the total from the following counts
var passed = Math.max(0, document.querySelectorAll('.pass').length - 1);
return {
// retrieve the total executed tests number
total: ''.concat(
passed,
' blocks (',
document.querySelector('#wru strong').textContent.replace(/\D/g, ''),
' single tests)'
),
passed: passed,
failed: Math.max(0, document.querySelectorAll('.fail').length - 1),
errored: Math.max(0, document.querySelectorAll('.error').length - 1)
};
});
page.stop();
page.close();
console.log('- - - - - - - - - -');
console.log('total: ' + results.total);
console.log('- - - - - - - - - -');
console.log('passed: ' + results.passed);
console.log('failed: ' + results.failed);
console.log('errored: ' + results.errored);
console.log('- - - - - - - - - -');
if (0 < results.failed + results.errored) {
phantom.exit(1);
} else test();
}, 1000);
} else phantom.exit(1);
});
}());