10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
|
|
import { describe, expect, it } from "vitest";
|
||
|
|
import { EmacsBackend } from "../src/backend";
|
||
|
|
|
||
|
|
describe("emacs package smoke", () => {
|
||
|
|
it("exports emacs backend ops", () => {
|
||
|
|
const backend = new EmacsBackend();
|
||
|
|
expect(backend.ops).toContain("emacs.eval.op");
|
||
|
|
});
|
||
|
|
});
|