9ad947884d
* feat(tests/snips): add billing tests + misc billing fixes * add testing key * asd
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import { search } from "./lib";
|
|
|
|
describe("Search tests", () => {
|
|
it.concurrent("works", async () => {
|
|
await search({
|
|
query: "firecrawl"
|
|
});
|
|
}, 60000);
|
|
});
|