index.ts 210 B

123456789
  1. import { component } from "./component";
  2. import { world } from "./world";
  3. export function permissioning(framework) {
  4. describe("Permissioning", () => {
  5. component(framework);
  6. world(framework);
  7. });
  8. }