mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 17:23:53 +01:00
remove redundant tests
hotfix/test-fixes File List: test/jest/Netscript/DynamicRamCalculation.test.js test/jest/Netscript/StaticRamCalculation.test.js
This commit is contained in:
parent
2be7029b50
commit
9b6b9a795b
@ -633,11 +633,6 @@ describe("Netscript Dynamic RAM Calculation/Generation Tests", function () {
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("stock.short()", async function () {
|
||||
const f = ["stock", "short"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("stock.sellShort()", async function () {
|
||||
const f = ["stock", "sellShort"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
@ -705,11 +700,6 @@ describe("Netscript Dynamic RAM Calculation/Generation Tests", function () {
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("getStats()", async function () {
|
||||
const f = ["singularity", "getStats"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("getDarkwebProgramCost()", async function () {
|
||||
const f = ["singularity", "getDarkwebProgramCost"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
@ -720,11 +710,6 @@ describe("Netscript Dynamic RAM Calculation/Generation Tests", function () {
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("getCharacterInformation()", async function () {
|
||||
const f = ["singularity", "getCharacterInformation"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("isBusy()", async function () {
|
||||
const f = ["singularity", "isBusy"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
|
@ -601,11 +601,6 @@ describe("Netscript Static RAM Calculation/Generation Tests", function () {
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("stock.short()", async function () {
|
||||
const f = ["stock", "short"];
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("stock.sellShort()", async function () {
|
||||
const f = ["stock", "sellShort"];
|
||||
await expectNonZeroRamCost(f);
|
||||
@ -673,16 +668,6 @@ describe("Netscript Static RAM Calculation/Generation Tests", function () {
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("getStats()", async function () {
|
||||
const f = ["getStats"];
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("getCharacterInformation()", async function () {
|
||||
const f = ["getCharacterInformation"];
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("isBusy()", async function () {
|
||||
const f = ["isBusy"];
|
||||
await expectNonZeroRamCost(f);
|
||||
|
Loading…
Reference in New Issue
Block a user