@remix-run/testing
Advanced tools
Comparing version
@@ -48,5 +48,5 @@ import * as React from "react"; | ||
*/ | ||
remixConfigFuture?: Partial<FutureConfig>; | ||
future?: Partial<FutureConfig>; | ||
} | ||
export declare function createRemixStub(routes: StubRouteObject[], context?: AppLoadContext): ({ initialEntries, initialIndex, hydrationData, remixConfigFuture, }: RemixStubProps) => React.JSX.Element; | ||
export declare function createRemixStub(routes: StubRouteObject[], context?: AppLoadContext): ({ initialEntries, initialIndex, hydrationData, future, }: RemixStubProps) => React.JSX.Element; | ||
export {}; |
/** | ||
* @remix-run/testing v0.0.0-nightly-6c0310c-20230901 | ||
* @remix-run/testing v0.0.0-nightly-6df056fa7-20250318 | ||
* | ||
@@ -45,3 +45,3 @@ * Copyright (c) Remix Software Inc. | ||
hydrationData, | ||
remixConfigFuture | ||
future | ||
}) { | ||
@@ -53,3 +53,6 @@ let routerRef = React__namespace.useRef(); | ||
future: { | ||
...remixConfigFuture | ||
v3_fetcherPersist: (future === null || future === void 0 ? void 0 : future.v3_fetcherPersist) === true, | ||
v3_relativeSplatPath: (future === null || future === void 0 ? void 0 : future.v3_relativeSplatPath) === true, | ||
v3_lazyRouteDiscovery: (future === null || future === void 0 ? void 0 : future.v3_lazyRouteDiscovery) === true, | ||
v3_singleFetch: (future === null || future === void 0 ? void 0 : future.v3_singleFetch) === true | ||
}, | ||
@@ -65,3 +68,4 @@ manifest: { | ||
}, | ||
routeModules: {} | ||
routeModules: {}, | ||
isSpaMode: false | ||
}; | ||
@@ -124,6 +128,10 @@ | ||
hasLoader: route.loader != null, | ||
// When testing routes, you should just be stubbing loader/action, not | ||
// trying to re-implement the full loader/clientLoader/SSR/hydration flow. | ||
// That is better tested via E2E tests. | ||
hasClientAction: false, | ||
hasClientLoader: false, | ||
hasErrorBoundary: route.ErrorBoundary != null, | ||
module: "build/stub-path-to-module.js" // any need for this? | ||
}; | ||
manifest.routes[newRoute.id] = entryRoute; | ||
@@ -130,0 +138,0 @@ |
/** | ||
* @remix-run/testing v0.0.0-nightly-6c0310c-20230901 | ||
* @remix-run/testing v0.0.0-nightly-6df056fa7-20250318 | ||
* | ||
@@ -14,3 +14,3 @@ * Copyright (c) Remix Software Inc. | ||
import { UNSAFE_RemixContext } from '@remix-run/react'; | ||
import { Outlet, createMemoryRouter, RouterProvider } from 'react-router-dom'; | ||
import { createMemoryRouter, RouterProvider, Outlet } from 'react-router-dom'; | ||
@@ -22,3 +22,3 @@ function createRemixStub(routes, context = {}) { | ||
hydrationData, | ||
remixConfigFuture | ||
future | ||
}) { | ||
@@ -30,3 +30,6 @@ let routerRef = React.useRef(); | ||
future: { | ||
...remixConfigFuture | ||
v3_fetcherPersist: (future === null || future === void 0 ? void 0 : future.v3_fetcherPersist) === true, | ||
v3_relativeSplatPath: (future === null || future === void 0 ? void 0 : future.v3_relativeSplatPath) === true, | ||
v3_lazyRouteDiscovery: (future === null || future === void 0 ? void 0 : future.v3_lazyRouteDiscovery) === true, | ||
v3_singleFetch: (future === null || future === void 0 ? void 0 : future.v3_singleFetch) === true | ||
}, | ||
@@ -42,3 +45,4 @@ manifest: { | ||
}, | ||
routeModules: {} | ||
routeModules: {}, | ||
isSpaMode: false | ||
}; | ||
@@ -101,6 +105,10 @@ | ||
hasLoader: route.loader != null, | ||
// When testing routes, you should just be stubbing loader/action, not | ||
// trying to re-implement the full loader/clientLoader/SSR/hydration flow. | ||
// That is better tested via E2E tests. | ||
hasClientAction: false, | ||
hasClientLoader: false, | ||
hasErrorBoundary: route.ErrorBoundary != null, | ||
module: "build/stub-path-to-module.js" // any need for this? | ||
}; | ||
manifest.routes[newRoute.id] = entryRoute; | ||
@@ -107,0 +115,0 @@ |
/** | ||
* @remix-run/testing v0.0.0-nightly-6c0310c-20230901 | ||
* @remix-run/testing v0.0.0-nightly-6df056fa7-20250318 | ||
* | ||
@@ -11,2 +11,2 @@ * Copyright (c) Remix Software Inc. | ||
*/ | ||
export { createRemixStub as unstable_createRemixStub } from './create-remix-stub.js'; | ||
export { createRemixStub } from './create-remix-stub.js'; |
export type { RemixStubProps } from "./create-remix-stub"; | ||
export { createRemixStub as unstable_createRemixStub } from "./create-remix-stub"; | ||
export { createRemixStub } from "./create-remix-stub"; |
/** | ||
* @remix-run/testing v0.0.0-nightly-6c0310c-20230901 | ||
* @remix-run/testing v0.0.0-nightly-6df056fa7-20250318 | ||
* | ||
@@ -19,2 +19,2 @@ * Copyright (c) Remix Software Inc. | ||
exports.unstable_createRemixStub = createRemixStub.createRemixStub; | ||
exports.createRemixStub = createRemixStub.createRemixStub; |
MIT License | ||
Copyright (c) Remix Software Inc. 2020-2021 | ||
Copyright (c) Shopify Inc. 2022-2023 | ||
Copyright (c) Shopify Inc. 2022-2024 | ||
@@ -6,0 +6,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy |
{ | ||
"name": "@remix-run/testing", | ||
"version": "0.0.0-nightly-6c0310c-20230901", | ||
"version": "0.0.0-nightly-6df056fa7-20250318", | ||
"description": "Testing utilities for Remix apps", | ||
@@ -19,12 +19,14 @@ "homepage": "https://remix.run", | ||
"dependencies": { | ||
"@remix-run/node": "0.0.0-nightly-6c0310c-20230901", | ||
"@remix-run/react": "0.0.0-nightly-6c0310c-20230901", | ||
"@remix-run/router": "1.9.0-pre.0", | ||
"react-router-dom": "6.16.0-pre.0" | ||
"@remix-run/node": "0.0.0-nightly-6df056fa7-20250318", | ||
"@remix-run/react": "0.0.0-nightly-6df056fa7-20250318", | ||
"@remix-run/router": "1.23.0", | ||
"react-router-dom": "6.30.0" | ||
}, | ||
"devDependencies": { | ||
"@remix-run/server-runtime": "0.0.0-nightly-6df056fa7-20250318", | ||
"@remix-run/testing": "0.0.0-nightly-6df056fa7-20250318", | ||
"@types/node": "^18.17.1", | ||
"@types/react": "^18.2.20", | ||
"@types/react-dom": "^18.2.7", | ||
"jest-environment-jsdom": "^29.6.4", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"react": "^18.2.0", | ||
@@ -51,3 +53,6 @@ "react-dom": "^18.2.0", | ||
"README.md" | ||
] | ||
} | ||
], | ||
"scripts": { | ||
"tsc": "tsc" | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
340
5.59%0
-100%15096
-84.59%9
28.57%9
-10%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
Updated
Updated