Skip to content

Commit

Permalink
✔️ Fixing linting error is Badge test files.
Browse files Browse the repository at this point in the history
  • Loading branch information
MiloradFilipovic committed May 7, 2022
1 parent e89dada commit afd70b8
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { render } from '@testing-library/vue';
import N8nBadge from '../Badge.vue';
import N8nText from '../../N8nText/Text.vue'

describe('components', () => {
describe('N8nBadge', () => {
Expand All @@ -10,7 +9,7 @@ describe('components', () => {
props: {
theme: 'default',
size: 'large',
bold: true
bold: true,
},
slots: {
default: '<n8n-text>Default badge</n8n-text>',
Expand All @@ -24,7 +23,7 @@ describe('components', () => {
props: {
theme: 'secondary',
size: 'medium',
bold: false
bold: false,
},
slots: {
default: '<n8n-text>Secondary badge</n8n-text>',
Expand All @@ -42,6 +41,6 @@ describe('components', () => {
});
expect(wrapper.html()).toMatchSnapshot();
});
})
});
});
});

0 comments on commit afd70b8

Please sign in to comment.