1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import React from 'react';
- import {
- RunAllGridTests,
- TestCreateGrid,
- TestCreateNewField,
- TestCreateRow,
- TestCreateSelectOptionInCell,
- TestDeleteField,
- TestDeleteRow,
- TestEditCell,
- TestEditCheckboxCell,
- TestEditDateCell,
- TestEditDateFormat,
- TestEditField,
- TestEditNumberFormat,
- TestEditTextCell,
- TestEditURLCell,
- TestGetSingleSelectFieldData,
- TestMoveField,
- TestSwitchFromMultiSelectToText,
- TestSwitchFromSingleSelectToNumber,
- } from './TestGrid';
- import {
- TestCreateKanbanBoard,
- TestCreateKanbanBoardColumn,
- TestCreateKanbanBoardRowInNoStatusGroup,
- TestAllKanbanTests,
- TestMoveKanbanBoardColumn,
- TestMoveKanbanBoardRow,
- } from './TestGroup';
- import { TestCreateDocument } from './TestDocument';
- export const TestAPI = () => {
- return (
- <React.Fragment>
- <ul className='m-6, space-y-2'>
- {/*<tests></tests>*/}
- <RunAllGridTests></RunAllGridTests>
- <TestCreateGrid></TestCreateGrid>
- <TestCreateRow></TestCreateRow>
- <TestDeleteRow></TestDeleteRow>
- <TestEditCell></TestEditCell>
- <TestEditTextCell></TestEditTextCell>
- <TestEditURLCell></TestEditURLCell>
- <TestEditDateCell></TestEditDateCell>
- <TestEditCheckboxCell></TestEditCheckboxCell>
- <TestCreateSelectOptionInCell></TestCreateSelectOptionInCell>
- <TestGetSingleSelectFieldData></TestGetSingleSelectFieldData>
- <TestEditField></TestEditField>
- <TestMoveField></TestMoveField>
- <TestCreateNewField></TestCreateNewField>
- <TestDeleteField></TestDeleteField>
- <TestEditDateFormat></TestEditDateFormat>
- <TestEditNumberFormat></TestEditNumberFormat>
- <TestSwitchFromSingleSelectToNumber></TestSwitchFromSingleSelectToNumber>
- <TestSwitchFromMultiSelectToText></TestSwitchFromMultiSelectToText>
- {/*kanban board */}
- <TestAllKanbanTests></TestAllKanbanTests>
- <TestCreateKanbanBoard></TestCreateKanbanBoard>
- <TestCreateKanbanBoardRowInNoStatusGroup></TestCreateKanbanBoardRowInNoStatusGroup>
- <TestMoveKanbanBoardRow></TestMoveKanbanBoardRow>
- <TestMoveKanbanBoardColumn></TestMoveKanbanBoardColumn>
- <TestCreateKanbanBoardColumn></TestCreateKanbanBoardColumn>
- <TestCreateDocument></TestCreateDocument>
- </ul>
- </React.Fragment>
- );
- };
|