mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
Added stub jasmine unit tests for MyAvatar
This commit is contained in:
parent
d02836a0cb
commit
700f548f44
1 changed files with 19 additions and 0 deletions
19
examples/tests/avatarUnitTests.js
Normal file
19
examples/tests/avatarUnitTests.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
|
||||
Script.include("../libraries/jasmine/jasmine.js");
|
||||
Script.include("../libraries/jasmine/hifi-boot.js");
|
||||
|
||||
describe("Avatar", function() {
|
||||
|
||||
beforeEach(function() {
|
||||
print("beforeEach");
|
||||
});
|
||||
|
||||
it("test one", function() {
|
||||
print("test one!");
|
||||
expect(10).toEqual(11);
|
||||
throw "wtf";
|
||||
});
|
||||
});
|
||||
|
||||
jasmine.getEnv().execute();
|
||||
|
Loading…
Reference in a new issue