-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): enable tag inputs without dropdowns (#586)
* feat(core): enable tag inputs without dropdowns * feat(core): enable tag inputs without dropdowns * feat(core): add cat-tag component for tag inputs without search * Revert "feat(core): enable tag inputs without dropdowns" This reverts commit c737b0f. * Revert "feat(core): enable tag inputs without dropdowns" This reverts commit 440fa09 * fix(core): fix pipeline * fix(core): review improvements * fix(core): review improvements --------- Co-authored-by: Tim Sielemann <[email protected]>
- Loading branch information
1 parent
74e2c76
commit e3b76e3
Showing
19 changed files
with
838 additions
and
43 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { newE2EPage } from '@stencil/core/testing'; | ||
|
||
describe('cat-tag', () => { | ||
beforeAll(() => { | ||
console.error = jest.fn(); | ||
console.warn = jest.fn(); | ||
}); | ||
|
||
it('renders', async () => { | ||
const page = await newE2EPage(); | ||
await page.setContent('<cat-tag label="Label"></cat-tag>'); | ||
|
||
const element = await page.find('cat-tag'); | ||
expect(element).toHaveClass('hydrated'); | ||
}); | ||
}); |
Oops, something went wrong.