mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
test - e2e - only inspect console for errors in chrome
This commit is contained in:
parent
a3ca64d321
commit
83782421bb
@ -30,12 +30,16 @@ describe('Metamask popup page', function () {
|
|||||||
})
|
})
|
||||||
|
|
||||||
afterEach(async function () {
|
afterEach(async function () {
|
||||||
// check for console errors
|
// logs command not supported in firefox
|
||||||
const errors = await checkBrowserForConsoleErrors()
|
// https://github.com/SeleniumHQ/selenium/issues/2910
|
||||||
if (errors.length) {
|
if (process.env.SELENIUM_BROWSER === 'chrome') {
|
||||||
const errorReports = errors.map(err => err.message)
|
// check for console errors
|
||||||
const errorMessage = `Errors found in browser console:\n${errorReports.join('\n')}`
|
const errors = await checkBrowserForConsoleErrors()
|
||||||
this.test.error(new Error(errorMessage))
|
if (errors.length) {
|
||||||
|
const errorReports = errors.map(err => err.message)
|
||||||
|
const errorMessage = `Errors found in browser console:\n${errorReports.join('\n')}`
|
||||||
|
this.test.error(new Error(errorMessage))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// gather extra data if test failed
|
// gather extra data if test failed
|
||||||
if (this.currentTest.state === 'failed') {
|
if (this.currentTest.state === 'failed') {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user