mirror of
https://github.com/gchq/CyberChef.git
synced 2024-10-31 21:21:01 +01:00
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
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);
|
|
}),
|
|
|
|
]);
|