Skip to content

Commit 65cd894

Browse files
authored
fix(tests): wrong import of type (#209)
* wrong import * swap order of the steps
1 parent 275fd9f commit 65cd894

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333
yarn-cache-folder-
3434
3535
- run: yarn install --immutable
36-
- run: yarn build
3736
- run: yarn test
37+
- run: yarn build

test/session.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ import queryServerInformation from "./fixtures/query_server_information.json";
1616

1717
import { getExampleQuery, getInitialSessionQuery, server } from "./server.js";
1818
import { HttpResponse, type PathParams, http } from "msw";
19-
import type { QueryResponse } from "../source/types.js";
20-
import type { Data } from "../dist/types.js";
19+
import type { QueryResponse, Data } from "../source/types.js";
2120

2221
const logger = loglevel.getLogger("test_session");
2322
logger.setLevel("debug");

0 commit comments

Comments
 (0)