mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
# Backport This will backport the following commits from `main` to `8.x`: - [[Stateful sidenav] Enable on-prem (#203239)](https://github.com/elastic/kibana/pull/203239) <!--- Backport version: 9.4.3 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Sébastien Loix","email":"sebastien.loix@elastic.co"},"sourceCommit":{"committedDate":"2024-12-11T13:12:15Z","message":"[Stateful sidenav] Enable on-prem (#203239)","sha":"771166bf7f95e95bc1e999919f6a75e26e157d0f","branchLabelMapping":{"^v9.0.0$":"main","^v8.18.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:enhancement","Feature:Security/Spaces","v9.0.0","Team:SharedUX","backport:prev-minor","Feature:Chrome"],"title":"[Stateful sidenav] Enable on-prem","number":203239,"url":"https://github.com/elastic/kibana/pull/203239","mergeCommit":{"message":"[Stateful sidenav] Enable on-prem (#203239)","sha":"771166bf7f95e95bc1e999919f6a75e26e157d0f"}},"sourceBranch":"main","suggestedTargetBranches":[],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/203239","number":203239,"mergeCommit":{"message":"[Stateful sidenav] Enable on-prem (#203239)","sha":"771166bf7f95e95bc1e999919f6a75e26e157d0f"}}]}] BACKPORT--> Co-authored-by: Sébastien Loix <sebastien.loix@elastic.co>
20 lines
864 B
TypeScript
20 lines
864 B
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
import { FtrProviderContext } from '../../ftr_provider_context';
|
|
|
|
export default function spacesApp({ loadTestFile }: FtrProviderContext) {
|
|
describe('Spaces app', function spacesAppTestSuite() {
|
|
loadTestFile(require.resolve('./copy_saved_objects'));
|
|
loadTestFile(require.resolve('./feature_controls/spaces_security'));
|
|
loadTestFile(require.resolve('./spaces_selection'));
|
|
loadTestFile(require.resolve('./enter_space'));
|
|
loadTestFile(require.resolve('./create_edit_space'));
|
|
loadTestFile(require.resolve('./spaces_grid'));
|
|
loadTestFile(require.resolve('./solution_tour'));
|
|
});
|
|
}
|