Skip to content

Commit

Permalink
Merge 386093e into 64a0b4a
Browse files Browse the repository at this point in the history
  • Loading branch information
jtenner committed Feb 5, 2020
2 parents 64a0b4a + 386093e commit 759e382
Show file tree
Hide file tree
Showing 135 changed files with 32,275 additions and 82,023 deletions.
20,070 changes: 4,628 additions & 15,442 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 7 additions & 13 deletions package.json
Expand Up @@ -5,12 +5,8 @@
"scripts": {
"bootstrap": "lerna bootstrap",
"coveralls": "cat ./packages/core/coverage/lcov.info | coveralls",
"docs": "run-s rimraf typedoc",
"gh-pages": "git subtree push --prefix docs origin gh-pages",
"jest": "jest",
"typedoc": "typedoc --options typedoc.js .",
"mdlint": "markdownlint *.md",
"rimraf": "rimraf docs/*",
"test": "run-s tsc:all test:all",
"test:ci": "run-s bootstrap tsc:all test:ci:all",
"test:ci:all": "lerna run test:ci",
Expand All @@ -32,22 +28,20 @@
"@as-pect/cli": "file:./packages/cli",
"@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",
"@types/jest": "^25.1.1",
"assemblyscript": "^0.9.1",
"@types/node": "^13.7.0",
"coveralls": "^3.0.9",
"csv-stringify": "^5.3.6",
"jest": "^24.9.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"markdownlint-cli": "^0.21.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.3.0",
"rimraf": "^3.0.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typedoc": "^0.16.4",
"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 759e382

Please sign in to comment.