mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
test - e2e - ignore 'development build of Redux' warning
This commit is contained in:
parent
4856c0803f
commit
a3ca64d321
@ -315,8 +315,10 @@ describe('Metamask popup page', function () {
|
|||||||
'Warning: Unknown prop `dataset` on ',
|
'Warning: Unknown prop `dataset` on ',
|
||||||
// Third-party Favicon 404s show up as errors
|
// Third-party Favicon 404s show up as errors
|
||||||
'favicon.ico - Failed to load resource: the server responded with a status of 404 (Not Found)',
|
'favicon.ico - Failed to load resource: the server responded with a status of 404 (Not Found)',
|
||||||
// React Minified build - known issue blocked by test build sys
|
// React Development build - known issue blocked by test build sys
|
||||||
'Warning: It looks like you\'re using a minified copy of the development build of React.',
|
'Warning: It looks like you\'re using a minified copy of the development build of React.',
|
||||||
|
// Redux Development build - known issue blocked by test build sys
|
||||||
|
'This means that you are running a slower development build of Redux.',
|
||||||
]
|
]
|
||||||
const browserLogs = await driver.manage().logs().get('browser')
|
const browserLogs = await driver.manage().logs().get('browser')
|
||||||
const errorEntries = browserLogs.filter(entry => !ignoredLogTypes.includes(entry.level.toString()))
|
const errorEntries = browserLogs.filter(entry => !ignoredLogTypes.includes(entry.level.toString()))
|
||||||
|
Loading…
Reference in New Issue
Block a user