Skip to content

Commit

Permalink
#358 format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AxelVerstappen committed Jan 29, 2025
1 parent c0bf34d commit e2c8801
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions src/__tests__/FilterGemeente.cy.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable vue/one-component-per-file */
import FilterGemeente from '../components/smart/FilterGemeente.vue';
import { defineComponent, ref } from 'vue';
import type { IGemeente } from '@models/locatie';
import { Niscode } from '@models/niscode.enum';
import type { IGemeente } from '@models/locatie';

describe('FilterGemeente', () => {
describe('default', () => {
Expand Down Expand Up @@ -99,8 +99,9 @@ describe('FilterGemeente', () => {
cy.mount(TestComponent).then(() => {
cy.dataCy('filter-gemeente').click().find('.multiselect__input').type('Brussel');
cy.dataCy('filter-gemeente')
.find('.multiselect__option span').first()
.should('have.text', 'Geen resultaten gevonden...')
.find('.multiselect__option span')
.first()
.should('have.text', 'Geen resultaten gevonden...');
});
});
});
Expand Down
2 changes: 1 addition & 1 deletion src/models/filter-input.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { IGemeente } from './locatie';
import { Niscode } from './niscode.enum';
import type { IGemeente } from './locatie';

export type TFilterInput = string | IGemeente;

Expand Down
2 changes: 1 addition & 1 deletion src/stories/smart-components/filter-gemeente.stories.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import '@/scss/main.scss';
import FilterGemeente from '@components/smart/FilterGemeente.vue';
import { Niscode } from '@models/niscode.enum';
import type { Meta, StoryObj } from '@storybook/vue3';
import type { IGemeente } from '@models/locatie';
import { Niscode } from '@models/niscode.enum';

// More on how to set up stories at: https://storybook.js.org/docs/vue/writing-stories/introduction
const meta: Meta<typeof FilterGemeente> = {
Expand Down

0 comments on commit e2c8801

Please sign in to comment.