Skip to content

Commit

Permalink
add empty unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Dec 20, 2024
1 parent 849f09b commit f62cb1b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
12 changes: 4 additions & 8 deletions packages/react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,12 @@
"imports": {
"#bundled": {
"require": {
"types": "./dist/combined.d.cts",
"react-server": "./dist/index.rsc.cjs",
"browser": "./dist/index.browser.cjs",
"node": "./dist/index.ssr.cjs"
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/combined.d.ts",
"react-server": "./dist/index.rsc.js",
"browser": "./dist/index.browser.js",
"node": "./dist/index.ssr.js"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions packages/react-router/src/importErrors.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import * as assert from "node:assert";
import { test } from "node:test";

test("tests will follow in a future PR", async () => {
assert.ok(true);
});

0 comments on commit f62cb1b

Please sign in to comment.