Skip to content

Commit

Permalink
Merge 8f3b91e into 64a0b4a
Browse files Browse the repository at this point in the history
  • Loading branch information
jtenner committed Jan 31, 2020
2 parents 64a0b4a + 8f3b91e commit 7fe0efe
Show file tree
Hide file tree
Showing 117 changed files with 27,401 additions and 74,727 deletions.
12,816 changes: 1,674 additions & 11,142 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -33,8 +33,8 @@
"@as-pect/core": "file:./packages/core",
"@types/glob": "^7.1.1",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.7",
"assemblyscript": "0.8.1-nightly.20200114",
"assemblyscript": "^0.9.0",
"@types/node": "^13.1.8",
"coveralls": "^3.0.9",
"csv-stringify": "^5.3.6",
"jest": "^24.9.0",
Expand All @@ -45,9 +45,9 @@
"rimraf": "^3.0.0",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"typedoc": "^0.16.4",
"typedoc": "^0.16.7",
"typedoc-plugin-lerna-packages": "^0.2.2",
"typescript": "^3.7.4"
"typescript": "^3.7.5"
},
"dependencies": {}
}
4 changes: 2 additions & 2 deletions packages/assembly/assembly/__tests__/RTrace.spec.ts
Expand Up @@ -13,11 +13,11 @@ describe("RTrace", () => {

it("should return a positive number", () => {
globalVec = new Vec3(1, 2, 3);
expect<i32>(RTrace.count()).toBeGreaterThan(0, "RTrace counts should be greater than 0");
expect(RTrace.count()).toBeGreaterThan(0, "RTrace counts should be greater than 0");
});

afterEach(() => {
let delta = RTrace.end(1);
expect<i32>(delta).toBe(1, "There should only now be one global reference to the Vec3 object");
expect(delta).toBe(1, "There should only now be one global reference to the Vec3 object");
});
});

0 comments on commit 7fe0efe

Please sign in to comment.