mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 14:59:16 +02:00
Added dark web functions to ns api
This commit is contained in:
@@ -703,6 +703,16 @@ describe("Netscript Dynamic RAM Calculation/Generation Tests", function () {
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("getDarkwebProgramCost()", async function () {
|
||||
const f = ["getDarkwebProgramCost"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("getDarkwebPrograms()", async function () {
|
||||
const f = ["getDarkwebPrograms"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
});
|
||||
|
||||
it("getCharacterInformation()", async function () {
|
||||
const f = ["getCharacterInformation"];
|
||||
await testNonzeroDynamicRamCost(f);
|
||||
|
||||
@@ -656,6 +656,16 @@ describe("Netscript Static RAM Calculation/Generation Tests", function () {
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("getDarkwebPrograms()", async function () {
|
||||
const f = ["getDarkwebPrograms"];
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("getDarkwebProgramCost()", async function () {
|
||||
const f = ["getDarkwebProgramCost"];
|
||||
await expectNonZeroRamCost(f);
|
||||
});
|
||||
|
||||
it("upgradeHomeRam()", async function () {
|
||||
const f = ["upgradeHomeRam"];
|
||||
await expectNonZeroRamCost(f);
|
||||
|
||||
Reference in New Issue
Block a user