1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

test - e2e - ignore react 'unknown props dataset' warnings

This commit is contained in:
kumavis 2018-05-21 17:15:05 -07:00
parent 9c6e2ec8ef
commit db08d8d43e

View File

@ -310,10 +310,13 @@ describe('Metamask popup page', function () {
async function checkBrowserForConsoleErrors() {
const ignoredLogTypes = ['WARNING']
const ignoredErrorMessages = ['Warning: Unknown prop `dataset` on ']
const browserLogs = await driver.manage().logs().get('browser')
const errorEntries = browserLogs.filter(entry => !ignoredLogTypes.includes(entry.level.toString()))
const errorEntryObjects = errorEntries.map(entry => entry.toJSON())
return errorEntryObjects
const errorObjects = errorEntries.map(entry => entry.toJSON())
// ignore all errors that contain a message in `ignoredErrorMessages`
const matchedErrorObjects = errorObjects.filter(entry => !ignoredErrorMessages.some(message => entry.message.includes(message)))
return matchedErrorObjects
}
async function verboseReportOnFailure (test) {