Skip to content

Commit

Permalink
Move component unit tests unit/components/
Browse files Browse the repository at this point in the history
  • Loading branch information
Pezmc committed Nov 14, 2022
1 parent 787612e commit 9949953
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/component/data-table/DataTable.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import FfKebabMenu from '@/components/KebabMenu.vue'
import FfTextInput from '@/components/form/TextInput.vue'
import FfCheck from '@/components/Check.vue'

describe('DataTable', () => {
describe('Data-Table > DataTable', () => {
it('supports searching rows by values', async () => {
const wrapper = mount(DataTable, {
props: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import DataTable from '@/components/data-table/DataTable.vue'

describe('DataTable', () => {
describe('Data-Table > DataTable', () => {
describe('#filterRows', () => {
it('searches all properties and returns matching subset of rows', () => {
const rows = [{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { mount } from '@vue/test-utils'
import TileSelection from '@/components/form/TileSelection.vue'
import TileSelectionOption from '@/components/form/TileSelectionOption.vue'

describe('Form > Tile Selection', () => {
describe('Form > TileSelection', () => {
it('should have no children by default', async () => {
const parent = mount(TileSelection, {
props: {
Expand Down

0 comments on commit 9949953

Please sign in to comment.