Skip to content

Commit bfbba44

Browse files
committed
Tests: Clean up.
1 parent 19edbf1 commit bfbba44

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

test/unit/src/math/ColorManagement.tests.js

-18
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
import { ColorManagement } from '../../../../src/math/ColorManagement.js';
44

5-
import { CONSOLE_LEVEL } from '../../utils/console-wrapper.js';
6-
75
export default QUnit.module( 'Maths', () => {
86

97
QUnit.module( 'ColorManagement', () => {
@@ -18,22 +16,6 @@ export default QUnit.module( 'Maths', () => {
1816

1917
} );
2018

21-
QUnit.test( 'legacyMode', ( assert ) => {
22-
23-
// surpress the following console message during testing
24-
// THREE.ColorManagement: .legacyMode=false renamed to .enabled=true in r150.
25-
26-
console.level = CONSOLE_LEVEL.OFF;
27-
const expected = ColorManagement.legacyMode === false;
28-
console.level = CONSOLE_LEVEL.DEFAULT;
29-
30-
assert.ok(
31-
expected,
32-
'ColorManagement.legacyMode is false by default.'
33-
);
34-
35-
} );
36-
3719
QUnit.todo( 'workingColorSpace', ( assert ) => {
3820

3921
assert.ok( false, 'everything\'s gonna be alright' );

0 commit comments

Comments
 (0)