Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
added test for startNetworkAudit
Browse files Browse the repository at this point in the history
  • Loading branch information
refael-m committed Dec 31, 2020
1 parent a092684 commit c42dd08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/specs/startNetworkAuditSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface NetworkLog {
describeCommon('startNetworkAudit', () => {
it('successfully start and read network audit', () => {
const expectedLog: NetworkLog = { url: 'http://placekitten.com/480/480', status: 200 };
const networkLogs: NetworkLog[] = [];
const networkLogs: Array<NetworkLog> = [];

browser.on('Network.responseReceived', (params: any) => {
networkLogs.push({
Expand Down

0 comments on commit c42dd08

Please sign in to comment.