Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-05 09:14:37 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-05 09:14:37 +0300
commit0e31e4396d76a8d723a26354278295fd0c51d9c7 (patch)
tree5ef2c0756659a7210bdb1055fd610ca47b28f0f7 /spec/frontend/content_editor
parentc20abe491ceeb1b8e1350f18f0c91e0a31c73cb5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/content_editor')
-rw-r--r--spec/frontend/content_editor/components/wrappers/table_cell_base_spec.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/frontend/content_editor/components/wrappers/table_cell_base_spec.js b/spec/frontend/content_editor/components/wrappers/table_cell_base_spec.js
index 275f48ea857..94628f2b2c5 100644
--- a/spec/frontend/content_editor/components/wrappers/table_cell_base_spec.js
+++ b/spec/frontend/content_editor/components/wrappers/table_cell_base_spec.js
@@ -165,6 +165,9 @@ describe('content/components/wrappers/table_cell_base', () => {
it('does not allow adding a row before the header', () => {
expect(findDropdown().text()).not.toContain('Insert row before');
+ expect(wrapper.findByTestId('actions-dropdown').attributes('contenteditable')).toBe(
+ 'false',
+ );
});
it('does not allow removing the header row', async () => {