Skip to content

Commit c5ac8e0

Browse files
author
Pepe Cano
authored
Test authoring tools (#153)
- Integrations: test authoring - Guides: test authoring - Cloud Docs: restructuring `creating and running test section`
1 parent b7066c7 commit c5ac8e0

File tree

101 files changed

+368
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+368
-200
lines changed

.vale/Vocab/docs/accept.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,5 @@ untyped
123123
vendored
124124
walkthrough
125125
webpages
126-
wpnonce
126+
wpnonce
127+
(?i)codeless

gatsby-node.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,36 @@ const createRedirects = ({ actions, pathPrefix }) => {
528528
toPath: '/javascript-api/k6-html',
529529
isPermanent: true,
530530
});
531+
532+
createRedirect({
533+
fromPath: '/using-k6/session-recording-har-support',
534+
toPath: '/test-authoring/recording-a-session',
535+
isPermanent: true,
536+
});
537+
538+
createRedirect({
539+
fromPath: '/cloud/creating-and-running-a-test/test-builder',
540+
toPath: '/test-authoring/test-builder',
541+
isPermanent: true,
542+
});
543+
544+
createRedirect({
545+
fromPath: '/cloud/creating-and-running-a-test/in-app-script-editor',
546+
toPath: '/cloud/creating-and-running-a-test/script-editor',
547+
isPermanent: true,
548+
});
549+
550+
createRedirect({
551+
fromPath: '/cloud/creating-and-running-a-test/recording-a-test-script',
552+
toPath: '/test-authoring/recording-a-session/browser-recorder',
553+
isPermanent: true,
554+
});
555+
556+
createRedirect({
557+
fromPath: '/docs/cloud/creating-and-running-a-test/converters',
558+
toPath: '/integrations',
559+
isPermanent: true,
560+
});
531561
};
532562

533563
exports.createPages = async (options) => {

src/components/pages/doc-integrations/external-links-dashboard/external-links-dashboard.module.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
@include doc-section-spacing;
33
}
44

5+
.subtitle {
6+
margin-top: 10px;
7+
color: $color-secondary;
8+
font-size: $font-size-lg;
9+
line-height: $line-height-lg;
10+
}
11+
512
.dashboard {
613
padding: 0;
714
list-style-type: none;

src/components/pages/doc-integrations/external-links-dashboard/external-links-dashboard.view.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,16 @@ import React from 'react';
44

55
import styles from './external-links-dashboard.module.scss';
66

7-
export const ExternalLinksDashboard = ({ dashboardTitle, linksData }) => (
7+
export const ExternalLinksDashboard = ({
8+
dashboardTitle,
9+
subtitle,
10+
linksData,
11+
}) => (
812
<div className={`container ${styles.wrapper}`}>
913
<Heading tag={'h2'} size={'lg'}>
1014
{dashboardTitle}
1115
</Heading>
16+
{subtitle && <p className={styles.subtitle}>{subtitle}</p>}
1217
<ul className={styles.dashboard}>
1318
{linksData.map(({ picture, title, description, url }, i) => (
1419
<li className={styles.linkWrapper} key={`exb-${i}`}>
Lines changed: 69 additions & 0 deletions
Lines changed: 19 additions & 0 deletions
Lines changed: 86 additions & 0 deletions

src/data/markdown/docs/01 guides/02 Using k6/13 Session recording - HAR support.md renamed to src/data/markdown/docs/01 guides/03 Test authoring/02 Recording a session/02 Har converter.md

Lines changed: 11 additions & 20 deletions
33.5 KB
32 KB

0 commit comments

Comments
 (0)