Skip to content

Commit

Permalink
fix: remove Lighthouse types (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine committed Sep 20, 2022
1 parent f090fce commit 017ae48
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lighthouse/LighthouseRunnerExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,13 @@ import { PuppeteerRunnerExtension } from '../PuppeteerRunnerExtension.js';
import type { Step, UserFlow } from '../Schema.js';
import { isMobileFlow, isNavigationStep } from './helpers.js';

import type FlowResult from 'lighthouse/types/lhr/flow';

export class LighthouseRunnerExtension extends PuppeteerRunnerExtension {
#isTimespanRunning = false;
#isNavigationRunning = false;
#lhFlow?: any;

async createFlowResult(): Promise<FlowResult> {
// TODO: Use Lighthouse types once the peer dependency is defined.
async createFlowResult(): Promise<any> {
if (!this.#lhFlow) {
throw new Error('Cannot get flow result before running the flow');
}
Expand Down

0 comments on commit 017ae48

Please sign in to comment.