Skip to content

Commit

Permalink
add ast test
Browse files Browse the repository at this point in the history
  • Loading branch information
Zetazzz committed Oct 12, 2024
1 parent 71000cb commit 4fd6603
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`works 1`] = `"return createGetBalance;"`;
4 changes: 4 additions & 0 deletions packages/ast/src/clients/helper-funcs/funcs.test.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
import { expectCode } from "../../../test-utils";
import { createMsgHelperCreator } from "./msg-funcs";

it('works', async () => {
expectCode(createMsgHelperCreator({} as any, {} as any, 'balance', 'createGetBalance'));
});

0 comments on commit 4fd6603

Please sign in to comment.