Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dmarcos committed Oct 25, 2023
1 parent e3e6608 commit f036789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/scene/a-scene.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ suite('a-scene (without renderer) - WebXR', function () {
assert.ok(sceneEl.hasAttribute('inspector'));
assert.ok(sceneEl.hasAttribute('keyboard-shortcuts'));
assert.ok(sceneEl.hasAttribute('screenshot'));
assert.ok(sceneEl.hasAttribute('vr-mode-ui'));
assert.ok(sceneEl.hasAttribute('xr-mode-ui'));
sceneEl.removeEventListener('loaded', onLoaded);
done();
});
Expand Down Expand Up @@ -564,7 +564,7 @@ suite('a-scene (without renderer) - WebVR', function () {
assert.ok(sceneEl.hasAttribute('inspector'));
assert.ok(sceneEl.hasAttribute('keyboard-shortcuts'));
assert.ok(sceneEl.hasAttribute('screenshot'));
assert.ok(sceneEl.hasAttribute('vr-mode-ui'));
assert.ok(sceneEl.hasAttribute('xr-mode-ui'));
sceneEl.removeEventListener('loaded', onLoaded);
done();
});
Expand Down

0 comments on commit f036789

Please sign in to comment.