Skip to content

Commit 4d25285

Browse files
authored
Reorg the tests folder (#1396)
1 parent 8874337 commit 4d25285

12 files changed

+13
-13
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { LRUCache } from '../src/core/renderer/utilities/LRUCache.js';
1+
import { LRUCache } from '../../src/core/renderer/utilities/LRUCache.js';
22

33
describe( 'LRUCache', () => {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PriorityQueue } from '../src/core/renderer/utilities/PriorityQueue.js';
1+
import { PriorityQueue } from '../../src/core/renderer/utilities/PriorityQueue.js';
22

33
const nextFrame = () => new Promise( resolve => requestAnimationFrame( resolve ) );
44

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

33
describe( 'TilesRendererBase', () => {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getUrlExtension } from '../src/core/renderer/utilities/urlExtension.js';
1+
import { getUrlExtension } from '../../src/core/renderer/utilities/urlExtension.js';
22

33
describe( 'getUrlExtension', () => {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { DataCache } from '../src/three/plugins/images/utils/DataCache.js';
1+
import { DataCache } from '../../src/three/plugins/images/utils/DataCache.js';
22

33
function waitFrame() {
44

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/* eslint-disable vitest/expect-expect */
22
import * as Cesium from 'cesium';
33
import { Vector3, MathUtils, Matrix4, Box3, Sphere } from 'three';
4-
import { EllipsoidRegion } from '../src/three/renderer/math/EllipsoidRegion.js';
5-
import { Ellipsoid } from '../src/three/renderer/math/Ellipsoid.js';
6-
import { WGS84_HEIGHT, WGS84_RADIUS } from '../src/core/renderer/constants.js';
7-
import { WGS84_ELLIPSOID } from '../src/three/renderer/math/GeoConstants.js';
4+
import { EllipsoidRegion } from '../../src/three/renderer/math/EllipsoidRegion.js';
5+
import { Ellipsoid } from '../../src/three/renderer/math/Ellipsoid.js';
6+
import { WGS84_HEIGHT, WGS84_RADIUS } from '../../src/core/renderer/constants.js';
7+
import { WGS84_ELLIPSOID } from '../../src/three/renderer/math/GeoConstants.js';
88

99
function epsCompare( a, b, EPSILON = 1e-10 ) {
1010

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ProjectionScheme } from '../src/three/plugins/images/utils/ProjectionScheme.js';
1+
import { ProjectionScheme } from '../../src/three/plugins/images/utils/ProjectionScheme.js';
22
import { MathUtils } from 'three';
33

44
describe( 'ProjectionScheme', () => {

0 commit comments

Comments
 (0)