Skip to content

Commit

Permalink
tests(devtools): sync e2e (#16160)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine authored Aug 22, 2024
1 parent c79628a commit ca8b112
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cli/test/smokehouse/test-definitions/dobetterweb.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ const expectations = {
},
'render-blocking-resources': {
score: '<1',
numericValue: '>=85',
numericValue: '>=50',
details: {
items: [
{
Expand Down
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 ca8b112

Please sign in to comment.