Skip to content

Commit

Permalink
tests(devtools): sync e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Aug 22, 2024
1 parent c79628a commit 67b0a22
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,12 @@ describe('DevTools', function() {
statusCode: item.statusCode,
};
});
assert.deepEqual(trimmedRequests, [
{url: 'hello.html', statusCode: 200},
{url: 'basic.css', statusCode: -1}, // statuCode === -1 means the request failed
]);

// An extra basic.css request with status code -1 appears, but only in e2e tests
// This test is made more lenient since this only happens in the e2e environment
// b/359984292
assert.deepStrictEqual(trimmedRequests[0], {url: 'hello.html', statusCode: 200});
assert.deepStrictEqual(trimmedRequests[1], {url: 'basic.css', statusCode: -1});
});
});

Expand Down

0 comments on commit 67b0a22

Please sign in to comment.