Skip to content

Commit

Permalink
fix test import
Browse files Browse the repository at this point in the history
  • Loading branch information
akutruff committed Aug 26, 2022
1 parent 56971b9 commit dc2eded
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/diagon-react/src/subscriptions.ui.test.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* eslint-disable @typescript-eslint/ban-types */
import { act, fireEvent, render, RenderOptions } from '@testing-library/react';
import { SubscribingRecorder, createRecordingProxy, map_get, resetEnvironment, subscribe, subscribeDeep } from 'diagon';
import { createRecordingProxy, map_get, resetEnvironment, subscribe, subscribeDeep } from 'diagon';

import React, { FC, PropsWithChildren, ReactElement, useRef } from 'react';
import { createReactRecorder, StoreContext, StoreContextValue, useDeepSnapshot, useMutator, useProjectedSnapshot, useSnapshot, useSubscribedSnapshot } from '.';
import { createReactRecorder, ReactRecorder, StoreContext, StoreContextValue, useDeepSnapshot, useMutator, useProjectedSnapshot, useSnapshot, useSubscribedSnapshot } from '.';

const SubscriptionApp: FC<PropsWithChildren<StoreContextValue>> = ({ children, state, recorder }) => {
return (
Expand All @@ -23,7 +23,7 @@ const renderWithPatchTracking = (ui: ReactElement, storeContextValue: StoreConte
};

describe('subscriptions', () => {
let recorder: SubscribingRecorder;
let recorder: ReactRecorder;

beforeEach(() => {
resetEnvironment();
Expand Down

0 comments on commit dc2eded

Please sign in to comment.