mirror of
https://github.com/nvms/prsm.git
synced 2025-12-16 08:00:53 +00:00
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
import { testSuite } from "manten";
|
|
|
|
|
|
export default testSuite(async ({ describe }) => {
|
|
describe("utils", async ({ runTestSuite }) => {
|
|
runTestSuite(import("./changeProps.test.js"));
|
|
runTestSuite(import("./appendProps.test.js"));
|
|
runTestSuite(import("./returnFound.test.js"));
|
|
});
|
|
});
|