Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 529fa18

Browse files
committed
test(test.ts*): fix import path
1 parent e5bd397 commit 529fa18

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/sheet-compiler.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { genBase62Hash, sheetCompiler } from '../src/_internal';
2-
import { max_lg } from '../src/core';
2+
import { max_lg } from '../src/core/media';
33

44
test('sheetCompiler produces expected output', async () => {
55
const object = {

test/style-compiler.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { genBase62Hash, styleCompiler } from '../src/_internal';
2-
import { max_lg } from '../src/core';
2+
import { max_lg } from '../src/core/media';
33

44
test('styleCompiler produces expected output', async () => {
55
const object = {

test/style-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Style from '../src/core';
1+
import Style from '../src/core/style';
22

33
test('Style.create returns an object with string values', () => {
44
const styles = Style.create({ test: { color: 'aqua' } });

0 commit comments

Comments
 (0)