unnecessary test

This commit is contained in:
Alex Moreno 2024-07-18 08:31:23 +02:00
parent 83596daf76
commit 08e170bc17
1 changed files with 0 additions and 14 deletions

View File

@ -35,18 +35,4 @@ describe('CustomerPayments', () => {
);
});
});
describe('stateColor()', () => {
it('should return "positive" when isConfirmed property is truthy', async () => {
const result = await vm.stateColor({ isConfirmed: true });
expect(result).toEqual('positive');
});
it('should return "primary" when isConfirmed property is falsy', async () => {
const result = await vm.stateColor({ isConfirmed: false });
expect(result).toEqual('primary');
});
});
});