summaryrefslogtreecommitdiff
path: root/spec/frontend/ci_lint/components/ci_lint_warnings_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/ci_lint/components/ci_lint_warnings_spec.js')
-rw-r--r--spec/frontend/ci_lint/components/ci_lint_warnings_spec.js54
1 files changed, 0 insertions, 54 deletions
diff --git a/spec/frontend/ci_lint/components/ci_lint_warnings_spec.js b/spec/frontend/ci_lint/components/ci_lint_warnings_spec.js
deleted file mode 100644
index 6e0a4881e14..00000000000
--- a/spec/frontend/ci_lint/components/ci_lint_warnings_spec.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import { mount } from '@vue/test-utils';
-import { GlAlert, GlSprintf } from '@gitlab/ui';
-import { trimText } from 'helpers/text_helper';
-import CiLintWarnings from '~/ci_lint/components/ci_lint_warnings.vue';
-
-const warnings = ['warning 1', 'warning 2', 'warning 3'];
-
-describe('CI lint warnings', () => {
- let wrapper;
-
- const createComponent = (limit = 25) => {
- wrapper = mount(CiLintWarnings, {
- propsData: {
- warnings,
- maxWarnings: limit,
- },
- });
- };
-
- const findWarningAlert = () => wrapper.find(GlAlert);
- const findWarnings = () => wrapper.findAll('[data-testid="ci-lint-warning"]');
- const findWarningMessage = () => trimText(wrapper.find(GlSprintf).text());
-
- afterEach(() => {
- wrapper.destroy();
- wrapper = null;
- });
-
- it('displays the warning alert', () => {
- createComponent();
-
- expect(findWarningAlert().exists()).toBe(true);
- });
-
- it('displays all the warnings', () => {
- createComponent();
-
- expect(findWarnings()).toHaveLength(warnings.length);
- });
-
- it('shows the correct message when the limit is not passed', () => {
- createComponent();
-
- expect(findWarningMessage()).toBe(`${warnings.length} warnings found:`);
- });
-
- it('shows the correct message when the limit is passed', () => {
- const limit = 2;
-
- createComponent(limit);
-
- expect(findWarningMessage()).toBe(`${warnings.length} warnings found: showing first ${limit}`);
- });
-});