[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core(fr): convert image-elements gatherer #12474

Merged
merged 17 commits into from
May 17, 2021
Prev Previous commit
Next Next commit
config test
  • Loading branch information
adamraine committed May 13, 2021
commit b6a03881bf23b235c26e2bfebe4d4a305e155b0d
4 changes: 2 additions & 2 deletions lighthouse-core/test/fraggle-rock/config/config-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ describe('Fraggle Rock Config', () => {
});

it('should throw on invalid artifact definitions', () => {
const configJson = {artifacts: [{id: 'ImageElements', gatherer: 'image-elements'}]};
expect(() => initializeConfig(configJson, {gatherMode})).toThrow(/ImageElements gatherer/);
const configJson = {artifacts: [{id: 'FullPageScreenshot', gatherer: 'full-page-screenshot'}]};
expect(() => initializeConfig(configJson, {gatherMode})).toThrow(/FullPageScreenshot gatherer/);
});

it('should resolve navigation definitions', () => {
Expand Down