Skip to content
Snippets Groups Projects
Commit 3dd714d5 authored by David Pisek's avatar David Pisek 2️⃣
Browse files

Merge branch '391464-add-spec-for-empty-spaces' into 'master'

Add a unit test for empty spaces

See merge request !111940



Merged-by: default avatarDavid Pisek <dpisek@gitlab.com>
Approved-by: default avatarDaniel Tian <dtian@gitlab.com>
Approved-by: default avatarDavid Pisek <dpisek@gitlab.com>
Co-authored-by: default avatarDaniel Tian <dtian@gitlab.com>
Co-authored-by: Savas Vedova's avatarSavas Vedova <svedova@gitlab.com>
parents d4be3b5f d5e52be8
1 merge request!111940Add a unit test for empty spaces
Pipeline #778539953 passed
......@@ -19,7 +19,13 @@ describe('app/assets/javascripts/vue_merge_request_widget/components/report_widg
expect(wrapper.isVisible()).toBe(false);
});
it('shows the container when children have no content', async () => {
it('hides the container when children has only empty spaces', async () => {
createComponent({ slot: `<span><b>&nbsp;<br/>\t\r\n</b></span>&nbsp;` });
await nextTick();
expect(wrapper.isVisible()).toBe(false);
});
it('shows the container when a child has content', async () => {
createComponent({ slot: `<span><b>test</b></span>` });
await nextTick();
expect(wrapper.isVisible()).toBe(true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment