mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
12 lines
396 B
JavaScript
12 lines
396 B
JavaScript
// TODO Importing NetscriptFunctions breaks the mochapack build
|
|
// import { NetscriptFunctions } from "../../src/NetscriptFunctions";
|
|
import { expect } from "chai";
|
|
|
|
console.log("Beginning Netscript Dynamic RAM Calculation/Generation Tests");
|
|
|
|
describe("Netscript Static RAM Calculation/Generation Tests", function() {
|
|
it("should run", function() {
|
|
expect(1).to.equal(1);
|
|
});
|
|
});
|