Skip to content

Commit

Permalink
Test internal file import on CJS
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Jun 4, 2024
1 parent dbd7c62 commit be37fea
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/src/features/issues/test_issue_1067_cjs_esm.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { ArrayUtil } from "typia/lib/utils/ArrayUtil";

import { TestValidator } from "../../helpers/TestValidator";

export const test_issue_1067_cjs_esm = (): void => {
const values: number[] = ArrayUtil.repeat(10, () => 0);
TestValidator.equals("internal")(values)(new Array(10).fill(0));
};

0 comments on commit be37fea

Please sign in to comment.