2019-07-09 13:23:59 +02:00
|
|
|
import TestRegister from "../../lib/TestRegister.mjs";
|
|
|
|
import Dish from "../../src/core/Dish.mjs";
|
|
|
|
import it from "../node/assertionHandler.mjs";
|
2019-03-20 12:57:47 +01:00
|
|
|
import assert from "assert";
|
|
|
|
|
|
|
|
TestRegister.addApiTests([
|
|
|
|
it("Dish - presentAs: should exist", () => {
|
|
|
|
const dish = new Dish();
|
|
|
|
assert(dish.presentAs);
|
|
|
|
}),
|
|
|
|
|
|
|
|
]);
|