8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
1 changed files with 14 additions and 14 deletions
Showing only changes of commit 28db925645 - Show all commits

View File

@ -6,7 +6,7 @@ import { axios } from 'app/test/vitest/helper';
describe('VnVisibleColumns', () => {
let wrapper;
let vm;
let columnsMock = [];
beforeEach(() => {
wrapper = createWrapper(VnVisibleColumn, {
propsData: {
@ -23,29 +23,29 @@ describe('VnVisibleColumns', () => {
describe('setUserConfigViewData()', () => {
it('should initialize localColumns with visible configuration', () => {
columnsMock = [
vm.columns = [
{ name: 'columnMockName', label: undefined },
{ name: 'columnMockAddress', label: undefined },
{ name: 'columnMockId', label: undefined },
];
vm.columns = columnsMock;
const configuration = {
columnMockName: true,
columnMockAddress: false,
columnMockId: true,
};
vm.setUserConfigViewData(configuration, false);
expect(vm.localColumns).toEqual([
const expectedColumns = [
{ name: 'columnMockName', label: undefined, visible: true },
{ name: 'columnMockAddress', label: undefined, visible: false },
{ name: 'columnMockId', label: undefined, visible: true },
]);
];
vm.setUserConfigViewData(configuration, false);
expect(vm.localColumns).toEqual(expectedColumns);
});
it('should skip columns based on props', () => {
columnsMock = [
vm.columns = [
{ name: 'columnMockName', label: undefined },
{ name: 'columnMockId', label: undefined },
{ name: 'skippedColumn', label: 'Skipped Column' },
@ -55,14 +55,14 @@ describe('VnVisibleColumns', () => {
skippedColumn: false,
columnMockId: true,
};
vm.columns = columnsMock;
const expectedColumns = [
{ name: 'columnMockName', label: undefined, visible: true },
{ name: 'columnMockId', label: undefined, visible: true },
];
vm.setUserConfigViewData(configuration, false);
expect(vm.localColumns).toEqual([
{ name: 'columnMockName', label: undefined, visible: true },
{ name: 'columnMockId', label: undefined, visible: true },
]);
expect(vm.localColumns).toEqual(expectedColumns);
});
});