Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ Reactylon is licensed under the MIT License, with the inclusion of other depende

- Babylon.js: Licensed under the Apache License, Version 2.0. For more details, visit the Babylon.js License.
- React & React Native: Licensed under the MIT License. For more details, visit the React License.

Test Github workflow
2 changes: 1 addition & 1 deletion packages/library/src/components/hosts/MeshHost.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Meshes tests', () => {
const { scene, rerender } = render(<box name={boxName} position={new Vector3(0, 0, 0)} />);
const box = scene.getMeshById(boxName) as Mesh;
rerender(<box name={boxName} position={new Vector3(1, 1, 0)} />);
expect(box.position.equals(new Vector3(1, 1, 0))).toBeTruthy();
expect(box.position.equals(new Vector3(1, 0, 0))).toBeTruthy();
});

test('should dispose the box', async () => {
Expand Down
Loading