Skip to content

Commit

Permalink
revert imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccar committed Sep 21, 2023
1 parent 48666cc commit e58ac46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lighthouse/lighthouse-get-urls.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs');
const util = require('util');
import glob from 'glob-promise';
const glob = require('glob-promise');
const readdir = util.promisify(fs.readdir);

async function createURLsFile() {
Expand Down
3 changes: 1 addition & 2 deletions src/tests/helpers/url-generator.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
const fs = require('fs');
const util = require('util');

import glob from 'glob-promise';
const glob = require('glob-promise');
const readdir = util.promisify(fs.readdir);

const testURL = `http://host.docker.internal:3010`;
Expand Down

0 comments on commit e58ac46

Please sign in to comment.