Skip to content

Commit

Permalink
test(util): Fix browser module import path on Windows
Browse files Browse the repository at this point in the history
Fix module import path

Ref #3554
  • Loading branch information
netil committed Dec 11, 2023
1 parent cfc856c commit 9dbc18c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/assets/module/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
/* eslint-disable */
// @ts-nocheck
import {window} from "../../src/module/browser";
import {window} from "./browser";

// fake module replaced during test build to '/src/module/util.ts' by webpack.NormalModuleReplacementPlugin
import * as orgUtil from "../../test/assets/module/fake";
Expand Down

0 comments on commit 9dbc18c

Please sign in to comment.