mirror of
https://github.com/prymitive/karma
synced 2026-05-07 03:26:52 +00:00
14 lines
332 B
TypeScript
14 lines
332 B
TypeScript
import { NewLabelName, NewLabelValue } from "./Select";
|
|
|
|
describe("NewLabelName", () => {
|
|
it("returns correct text", () => {
|
|
expect(NewLabelName("foo")).toBe("New label: foo");
|
|
});
|
|
});
|
|
|
|
describe("NewLabelValue", () => {
|
|
it("returns correct text", () => {
|
|
expect(NewLabelValue("foo")).toBe("New value: foo");
|
|
});
|
|
});
|