-
-
Notifications
You must be signed in to change notification settings - Fork 36.1k
Closed
Description
Description
Running npm run lint-test will result with this line
three.js/test/unit/src/math/Matrix3.tests.js
454:18 warning 'Vector2' is not defined no-undef
but running npm run test-unit results in no test failing.
When adding the missing import with import { Vector2 } from '../../../../src/math/Vector2.js', and re-running npm run test-unit the test using Vector2 is failing while both assertions are True:
not ok 1925 Maths > Matrix3 > makeTranslation
1..2758
# pass 1283
# skip 0
# todo 1474
# fail 1
I'm not familiar to QUnit and could not pinpoint the bug :/
Reproduction steps
Code
run npm run lint-test
Live example
--
Screenshots
No response
Version
r172dev
Device
No response
Browser
No response
OS
No response
Mugen87