Skip to content

Commit

Permalink
fix import paths for test/
Browse files Browse the repository at this point in the history
  • Loading branch information
vogler committed Dec 30, 2023
1 parent c3657f0 commit 0ec24ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/notify.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable no-constant-condition */
import { delay, html_game_list, notify } from '../util.js';
import { cfg } from '../config.js';
import { delay, html_game_list, notify } from '../src/util.js';
import { cfg } from '../src/config.js';

const URL_CLAIM = 'https://gaming.amazon.com/home'; // dummy URL

Expand Down
2 changes: 1 addition & 1 deletion test/sigint-enquirer-raw.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/enquirer/enquirer/issues/372
import { prompt } from '../util.js';
import { prompt } from '../src/util.js';

const handleSIGINT = () => process.on('SIGINT', () => { // e.g. when killed by Ctrl-C
console.log('\nInterrupted by SIGINT. Exit!');
Expand Down

0 comments on commit 0ec24ef

Please sign in to comment.