Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
nickofthyme committed Jun 11, 2020
1 parent 53794fd commit e5a456a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .playground/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* under the License.
*/

import 'core-js';
// import 'core-js';
import React from 'react';
import ReactDOM from 'react-dom';

Expand Down
4 changes: 3 additions & 1 deletion browsers/browsers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ describe('smoke tests', () => {

afterAll(async() => {
const entries = await driver.manage().logs().get(logging.Type.BROWSER);
console.log(JSON.stringify(entries));
const entries2 = await driver.manage().logs().get(logging.Type.CLIENT);
console.log('ERRRORS BROWSER', JSON.stringify(entries));
console.log('ERRRORS CLIENT', JSON.stringify(entries2));

entries.forEach((entry) => {
if (entry.level.name === 'error') {
Expand Down

0 comments on commit e5a456a

Please sign in to comment.