test: mark "should await navigating specified target" as failing on chromium

This commit is contained in:
Pavel Feldman 2020-03-06 10:44:44 -08:00
parent 328805747f
commit f3734c3e86

View File

@ -905,7 +905,7 @@ module.exports.describe = function({testRunner, expect, playwright, MAC, WIN, FF
]);
expect(messages.join('|')).toBe('route|waitForNavigation|evaluate');
});
it('should await navigating specified target', async({page, server}) => {
it.fail(CHROMIUM)('should await navigating specified target', async({page, server}) => {
const messages = [];
server.setRoute('/empty.html', async (req, res) => { messages.push('route'); res.end('done'); });