Skip to content

Commit 17b9399

Browse files
committed
chore: refactor two internal redirects
1 parent 4991ec0 commit 17b9399

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

gatsby-node.js

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1623,6 +1623,20 @@ const createRedirects = ({ actions }) => {
16231623
isPermanent: true,
16241624
});
16251625

1626+
createRedirect({
1627+
fromPath: '/cloud/creating-and-running-a-test/recording-a-test-script',
1628+
toPath:
1629+
'/test-authoring/create-tests-from-recordings/using-the-browser-recorder/',
1630+
isPermanent: true,
1631+
});
1632+
1633+
createRedirect({
1634+
fromPath: '/using-k6/session-recording-har-support',
1635+
toPath:
1636+
'/test-authoring/create-tests-from-recordings/using-the-har-converter/',
1637+
isPermanent: true,
1638+
});
1639+
16261640
createRedirect({
16271641
fromPath: '/test-authoring/recording-a-session/har-converter',
16281642
toPath:
@@ -1700,14 +1714,10 @@ const createRedirects = ({ actions }) => {
17001714
'/cloud/creating-and-running-a-test/cloud-tests-from-the-cli/',
17011715
'/using-k6/html/working-with-html-forms': '/examples/html-forms/',
17021716
'/using-k6/html': '/javascript-api/k6-html/',
1703-
'/using-k6/session-recording-har-support':
1704-
'/test-authoring/recording-a-session/',
17051717
'/cloud/creating-and-running-a-test/test-builder':
17061718
'/test-authoring/test-builder/',
17071719
'/cloud/creating-and-running-a-test/in-app-script-editor':
17081720
'/cloud/creating-and-running-a-test/script-editor/',
1709-
'/cloud/creating-and-running-a-test/recording-a-test-script':
1710-
'/test-authoring/recording-a-session/browser-recorder/',
17111721
'/cloud/creating-and-running-a-test/converters': '/integrations/',
17121722
'/cloud/integrations/ci': '/integrations/',
17131723
'/cloud/cloud-faq/what-is-data-retention':

0 commit comments

Comments
 (0)