cd-typescript-seed/test/hello-world.spec.ts

8 строки
199 B
TypeScript

import { sayHello } from "../src/hello-world";
describe("say hello", function () {
it("passing a name", function () {
expect(sayHello("Syncfusion")).toBe("Hello Syncfusion");
})
});