1
1
mirror of https://github.com/ariya/phantomjs.git synced 2024-09-11 12:55:33 +03:00
phantomjs/test/basics/require.js
Ariya Hidayat bdaa9c8f83 Temporarily skip failing tests (#15342)
Due to some behavior differences in the latest QtWebKit, some tests do
not behave very well. Let's skip them while the issues are being
investigated.
2019-12-25 14:44:58 -08:00

16 lines
538 B
JavaScript

//! expect-exit: 1
//! expect-stdout: "1..0"
//! expect-stdout: "# ERROR: Global timeout expired"
/* The require tests need to run inside a module to work correctly; that
module is require/require_spec.js. (That directory also contains a
bunch of other files used by this test.) The module exports an array
of test functions in the form expected by generate_tests(). */
var rtests = require("require/require_spec.js").tests;
for (var i = 0; i < rtests.length; i++) {
// skip: FIXME
// test.apply(null, rtests[i]);
}