// import * as assert from "node:assert/strict";
// import { describe, it } from "node:test";

// await describe("foobar()", async () => {
// 	await describe("given two positive integers", async () => {
// 		const first = 1;
// 		const second = 2;

// 		await describe("when called", async () => {
// 			await it("returns the sum of them multiplied by 3", () => {
// 				assert.equal(foobar(first, second), 9);
// 			});
// 		});
// 	});
// });
