16 lines
350 B
JavaScript
16 lines
350 B
JavaScript
import {describe, it} from "jstests/libs/mochalite.js";
|
|
|
|
describe("fruits", () => {
|
|
it("apple", () => {});
|
|
it("banana", () => {});
|
|
it("cherry", () => {});
|
|
it("tomato", () => {});
|
|
});
|
|
|
|
describe("vegetables", () => {
|
|
it("carrot", () => {});
|
|
it("broccoli", () => {});
|
|
it("spinach", () => {});
|
|
it("tomato", () => {});
|
|
});
|