Skip to content

Commit

Permalink
Fix test imports
Browse files Browse the repository at this point in the history
  • Loading branch information
markdalgleish committed Oct 15, 2024
1 parent 6b76180 commit 832e1fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration/vite-route-config-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ test.describe("route config", () => {
export { routes } from "./actual-routes";
`,
"app/actual-routes.ts": js`
import { type RouteConfig } from "@rem/dev/routes";
import { type RouteConfig } from "@remix-run/dev/routes";
export const routes: RouteConfig = [
{
Expand Down Expand Up @@ -246,7 +246,7 @@ test.describe("route config", () => {
let files: Files = async ({ port }) => ({
"vite.config.js": await viteConfig.basic({ port }),
"app/routes.ts": js`
import { type RouteConfig } from "@rem/dev/routes";
import { type RouteConfig } from "@remix-run/dev/routes";
export const routes: RouteConfig = [
{
Expand Down Expand Up @@ -325,7 +325,7 @@ test.describe("route config", () => {
"vite.config.js": await viteConfig.basic({ port }),
"app/routes.ts": js`
import path from "node:path";
import { type RouteConfig } from "@rem/dev/routes";
import { type RouteConfig } from "@remix-run/dev/routes";
export const routes: RouteConfig = [
{
Expand Down

0 comments on commit 832e1fd

Please sign in to comment.