1
0
mirror of synced 2025-02-24 05:34:08 +01:00

13 lines
336 B
JavaScript
Raw Normal View History

import TestRegister from "../../lib/TestRegister.mjs";
import Dish from "../../../src/core/Dish.mjs";
import it from "../../node/assertionHandler.mjs";
import assert from "assert";
TestRegister.addApiTests([
it("Dish - presentAs: should exist", () => {
const dish = new Dish();
assert(dish.presentAs);
}),
]);