import { expect } from "chai";

import { greet } from "../src/example";

describe("example", () => {
  it("greets a user by his/her name", () => {
    expect(greet("Alice")).to.equal("Hello Alice!");
  });
});
