Skip to content

Commit

Permalink
chore: 干掉单测中的only
Browse files Browse the repository at this point in the history
  • Loading branch information
lurunze1226 committed Dec 29, 2023
1 parent 8ed279a commit 459b14b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/amis/__tests__/renderers/CRUDReload.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ test('CRUD reload drawer2', async () => {
expect(listApiCalledCount).toBe(1);
});

test.only('reload event triggered and clear selectedItems & unselectedItems', async () => {
test('reload event triggered and clear selectedItems & unselectedItems', async () => {
const mockFetcher = jest.fn(async function fetcher(config: any) {
return {
status: 200,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe('Renderer:NestedSelect', () => {
});


describe.only('Renderer:NestedSelect with onlyLeaf', () => {
describe('Renderer:NestedSelect with onlyLeaf', () => {
test('single selection', async () => {
const optionWithNoChild = 'OptionWithNoChild';
const optionWithChild = 'OptionWithChild';
Expand Down
2 changes: 1 addition & 1 deletion packages/amis/__tests__/renderers/Form/transfer.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ test('Renderer:Transfer with pagination', async () => {
expect((checkboxes2[4] as HTMLInputElement)?.checked).toEqual(true);
})

test.only('Renderer:Transfer with pagination and data source from data scope', async () => {
test('Renderer:Transfer with pagination and data source from data scope', async () => {
const mockData = [
{
"label": "Laura Lewis",
Expand Down

0 comments on commit 459b14b

Please sign in to comment.