Files
Dorod-Sky/skyvern-ts/client/tests/custom.test.ts
2025-10-23 20:14:59 -06:00

14 lines
357 B
TypeScript

/**
* This is a custom test file, if you wish to add more tests
* to your SDK.
* Be sure to mark this file in `.fernignore`.
*
* If you include example requests/responses in your fern definition,
* you will have tests automatically generated for you.
*/
describe("test", () => {
it("default", () => {
expect(true).toBe(true);
});
});