mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 03:46:08 +00:00
fix: database test cases and table options (#28)
This commit is contained in:
parent
868dd1aaaa
commit
dd1d4fc7bf
@ -90,6 +90,7 @@ describe('toInclude', () => {
|
||||
association: 'bars',
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -104,6 +105,7 @@ describe('toInclude', () => {
|
||||
attributes: [ 'col1', 'col2' ],
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -118,6 +120,7 @@ describe('toInclude', () => {
|
||||
attributes: [ 'col1', 'col2' ],
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -137,6 +140,7 @@ describe('toInclude', () => {
|
||||
]
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -156,6 +160,7 @@ describe('toInclude', () => {
|
||||
]
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -175,6 +180,7 @@ describe('toInclude', () => {
|
||||
]
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -196,6 +202,7 @@ describe('toInclude', () => {
|
||||
]
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -227,7 +234,8 @@ describe('toInclude', () => {
|
||||
include: ['col1'],
|
||||
},
|
||||
}
|
||||
]
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -256,6 +264,7 @@ describe('toInclude', () => {
|
||||
attributes: ['col1'],
|
||||
}
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -266,7 +275,6 @@ describe('toInclude', () => {
|
||||
},
|
||||
}).toEqual({
|
||||
attributes: {
|
||||
include: [],
|
||||
exclude: ['col1'],
|
||||
},
|
||||
});
|
||||
@ -279,18 +287,17 @@ describe('toInclude', () => {
|
||||
},
|
||||
}).toEqual({
|
||||
attributes: {
|
||||
include: [],
|
||||
exclude: ['col1'],
|
||||
},
|
||||
include: [
|
||||
{
|
||||
association: 'bars',
|
||||
attributes: {
|
||||
include: [],
|
||||
exclude: ['col1'],
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -356,7 +363,8 @@ describe('toInclude', () => {
|
||||
col1: 'val1',
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
@ -387,7 +395,8 @@ describe('toInclude', () => {
|
||||
col1: 'val1',
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
distinct: true,
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -279,6 +279,9 @@ export class Table {
|
||||
});
|
||||
// 添加字段后 table.options 中的 fields 并不会更新,这导致 table.getOptions() 拿不到最新的字段配置
|
||||
// 所以在同时更新 table.options.fields 数组
|
||||
if (!this.options.fields) {
|
||||
this.options.fields = [];
|
||||
}
|
||||
const existIndex = this.options.fields.findIndex(field => field.name === name);
|
||||
if (existIndex !== -1) {
|
||||
this.options.fields.splice(existIndex, 1, options);
|
||||
|
Loading…
Reference in New Issue
Block a user