7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
import test from "ava"
|
|
import { result } from "../src/main.js"
|
|
|
|
test("it is b", (t) => {
|
|
t.deepEqual(result, ["b"])
|
|
})
|