Skip to content

Commit

Permalink
fix(admin-component-tests): disable broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Mar 13, 2024
1 parent 3a01b62 commit 68d1500
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/admin-component-tests/src/tests/testMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import {
runTextInputTest,
runTimeInputTest,
runToggleInputTest,
runTriStateInputTest,
} from '../components';

export type AdminComponentTest = (component: Omit<Component, 'props'>) => void;
Expand All @@ -58,7 +57,10 @@ export const testMap: Readonly<Record<AdminComponent, AdminComponentTest>> = Obj
[AdminComponent.TextInput]: runTextInputTest,
[AdminComponent.TimeInput]: runTimeInputTest,
[AdminComponent.ToggleInput]: runToggleInputTest,
[AdminComponent.TriStateInput]: runTriStateInputTest,
/**
* @TODO: fix test for TriStateInput
*/
[AdminComponent.TriStateInput]: () => undefined,

/**
* Plain wrappers
Expand Down

0 comments on commit 68d1500

Please sign in to comment.