Skip to content

Commit

Permalink
style: add missing extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
andreashuber69 committed Jan 17, 2025
1 parent 2404634 commit 3962aff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/vue/AsyncCssPlugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { promisify } from "node:util";

import { describe, expect, it } from "vitest";

import { getLinkProperties } from "../getLinkProperties";
import { getLinkProperties } from "../getLinkProperties.js";

const execAsync = promisify(exec);

Expand Down
6 changes: 3 additions & 3 deletions src/test/webpack/AsyncCssPlugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import { describe, expect, it } from "vitest";
import type { Configuration } from "webpack";
import webpack from "webpack";

import { getLinkProperties } from "../getLinkProperties";
import { getLinkProperties } from "../getLinkProperties.js";

import asyncOptions from "./async.config";
import standardOptions from "./standard.config";
import asyncOptions from "./async.config.js";
import standardOptions from "./standard.config.js";

const checkWebpack = async (
options: Configuration,
Expand Down

0 comments on commit 3962aff

Please sign in to comment.