fmtlinttest

This commit is contained in:
Olivier Gagnon
2022-04-06 20:18:25 -04:00
parent 371de216ea
commit 7d4bf90b40
3 changed files with 185 additions and 191 deletions

View File

@@ -132,8 +132,6 @@ describe("Parsing NetScript code to work out static RAM costs", function () {
});
});
describe("Functions that can be confused with NS functions", function () {
it("Function 'get' that can be confused with Stanek.get", async function () {
const code = `
@@ -171,8 +169,6 @@ describe("Parsing NetScript code to work out static RAM costs", function () {
});
});
describe("Single files with non-core NS functions", function () {
it("Hacknet NS function with a cost from namespace", async function () {
const code = `
@@ -330,7 +326,5 @@ describe("Parsing NetScript code to work out static RAM costs", function () {
const calculated = (await calculateRamUsage(Player, code, [lib])).cost;
expectCost(calculated, GrowCost);
});
});
});