[8.13] [DOCS] Port forward link fix (#178875) (#179045)

# Backport

This will backport the following commits from `main` to `8.13`:
- [[DOCS] Port forward link fix
(#178875)](https://github.com/elastic/kibana/pull/178875)

<!--- Backport version: 9.4.3 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT
[{"author":{"name":"shainaraskas","email":"58563081+shainaraskas@users.noreply.github.com"},"sourceCommit":{"committedDate":"2024-03-20T13:16:04Z","message":"[DOCS]
Port forward link fix
(#178875)","sha":"c5840b6a2b92201c51160bc53c4cb2b8f5ecf524","branchLabelMapping":{"^v8.14.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Docs","release_note:skip","docs","v8.13.0","v8.14.0","v8.13.1"],"title":"[DOCS]
Port forward link
fix","number":178875,"url":"https://github.com/elastic/kibana/pull/178875","mergeCommit":{"message":"[DOCS]
Port forward link fix
(#178875)","sha":"c5840b6a2b92201c51160bc53c4cb2b8f5ecf524"}},"sourceBranch":"main","suggestedTargetBranches":["8.13"],"targetPullRequestStates":[{"branch":"8.13","label":"v8.13.0","branchLabelMappingKey":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.14.0","branchLabelMappingKey":"^v8.14.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/178875","number":178875,"mergeCommit":{"message":"[DOCS]
Port forward link fix
(#178875)","sha":"c5840b6a2b92201c51160bc53c4cb2b8f5ecf524"}}]}]
BACKPORT-->

Co-authored-by: shainaraskas <58563081+shainaraskas@users.noreply.github.com>
This commit is contained in:
Kibana Machine 2024-03-20 09:45:53 -04:00 committed by GitHub
parent 6c72d48cec
commit 83ee34e3b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ Every project or plugin should have its own `FunctionalTestRunner` config file.
To get started copy and paste this example to `test/functional/config.js`:
["source","js"]
["source","js",subs="attributes"]
-----------
import { resolve } from 'path';
import { REPO_ROOT } from '@kbn/utils';
@ -64,7 +64,8 @@ export default async function ({ readConfigFile }) {
}
// more settings, like timeouts, mochaOpts, etc are
// defined in the config schema. See {kibana-blob}src/functional_test_runner/lib/config/schema.js[src/functional_test_runner/lib/config/schema.js]
// defined in the config schema.
// See {kibana-blob}packages/kbn-test/src/functional_test_runner/lib/config/schema.ts
};
}