-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(VTable): tuning pass (#15186)
* refactor(VTable): tuning pass * test(VTable): update baseline cypress structure * docs(VTable): update page structure
- Loading branch information
1 parent
afc3893
commit c692f92
Showing
4 changed files
with
30 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
packages/vuetify/src/components/VTable/__tests__/VTable.spec.cy.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/// <reference types="../../../../types/cypress" /> | ||
|
||
import { VTable } from '..' | ||
import { generate } from '@/../cypress/templates' | ||
|
||
const props = {} | ||
|
||
const stories = { | ||
Default: <VTable />, | ||
} | ||
// Tests | ||
describe('VTable', () => { | ||
generate({ stories, props, component: VTable }) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters