build: disable found-in-page event test

On Windows release builds, the found-in-page event test causes the test suite to hang.  If the test is run individually, it works fine, but running it as part of the whole test suite causes the test suite to hang.  This works around the issue in #13704 by temporarily disabling that test.
This commit is contained in:
John Kleinschmidt 2018-07-18 14:59:46 -04:00
parent fc33130aa3
commit 613b03c3c7

View file

@ -990,7 +990,9 @@ describe('<webview> tag', function () {
}) })
}) })
describe('found-in-page event', () => { // TODO(jkleinsc): this test causes the test suite to hang on Windows release
// builds. Temporarily disabling so that release build tests will finish.
xdescribe('found-in-page event', () => {
it('emits when a request is made', (done) => { it('emits when a request is made', (done) => {
let requestId = null let requestId = null
let activeMatchOrdinal = [] let activeMatchOrdinal = []