Skip to content

Commit c20c3a1

Browse files
committed
refactor(test): move test-noise-range.js to tests/lib/noise/
This move aligns the test directory structure with the reorganized project layout introduced during the migration to rollup.
1 parent 623cfa5 commit c20c3a1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import { FlowNoise2DTime } from "../../src/lib/noise/flow-nose-2d-time.js";
2-
import { PerlinNoise2DTime } from "../../src/lib/noise/perlin-noise-2d-time.js";
1+
import {FlowNoise2DTime} from "../../../src/lib/noise/flow-nose-2d-time.js";
2+
import {PerlinNoise2DTime} from "../../../src/lib/noise/perlin-noise-2d-time.js";
33

44
function testRange(
5-
noise,
6-
{
7-
xSteps = 100,
8-
ySteps = 100,
9-
tSteps = 100,
10-
xStepSize = 0.1,
11-
yStepSize = 0.1,
12-
tStepSize = 0.1,
5+
noise,
6+
{
7+
xSteps = 100,
8+
ySteps = 100,
9+
tSteps = 100,
10+
xStepSize = 0.1,
11+
yStepSize = 0.1,
12+
tStepSize = 0.1,
1313
expectedMin = -1.0,
1414
expectedMax = 1.0,
1515
} = {}

0 commit comments

Comments
 (0)