Skip to content

Commit d7af645

Browse files
committed
Remove unnecessary export
1 parent 121dc68 commit d7af645

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/__tests__/mock-use-subscription-response.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ vi.mock("@urql/vue", () => ({
1010
useSubscription: vi.fn(),
1111
}));
1212

13-
export const query = gql`
13+
const query = gql`
1414
subscription CtrlStateS {
1515
ctrlState
1616
}
1717
`;
1818

19-
export type Data = { ctrlState: string };
19+
type Data = { ctrlState: string };
2020

2121
const fcState = fc.string({ minLength: 1 });
2222
const fcData = fc.oneof(fc.constant(undefined), fc.record({ ctrlState: fcState }));

0 commit comments

Comments
 (0)