mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
/* eslint-disable @typescript-eslint/camelcase */
|
|
import { mount } from '@vue/test-utils';
|
|
import Vue from 'vue';
|
|
import ProfitSymbol from '@/components/ftbot/ProfitSymbol.vue';
|
|
|
|
describe('ProfitSymbol.vue', () => {
|
|
let cmp;
|
|
|
|
beforeEach(() => {
|
|
cmp = mount(ProfitSymbol, { propsData: { trade: {} } });
|
|
});
|
|
it('calculates isProfitable with negative profit', () => {
|
|
const trade = {
|
|
close_profit: -0.5,
|
|
current_profit: -0.5,
|
|
profit_ratio: -0.5,
|
|
};
|
|
cmp.setProps({ trade });
|
|
|
|
expect(cmp.vm.isProfitable).toBe(false);
|
|
});
|
|
it('calculates isProfitable with positive profit', () => {
|
|
const trade = {
|
|
close_profit: 0.5,
|
|
current_profit: 0.5,
|
|
profit_ratio: 0.5,
|
|
};
|
|
cmp.setProps({ trade });
|
|
|
|
expect(cmp.vm.isProfitable).toBe(true);
|
|
});
|
|
|
|
it('renders triangle down when profit is negative', async () => {
|
|
const trade = {
|
|
close_profit: -0.5,
|
|
current_profit: -0.5,
|
|
profit_ratio: -0.5,
|
|
};
|
|
cmp.setProps({ trade });
|
|
await Vue.nextTick();
|
|
expect(cmp.html()).toContain('triangle-down');
|
|
expect(cmp.html()).not.toContain('triangle-up');
|
|
});
|
|
|
|
it('renders triangle up when profit is positive', async () => {
|
|
const trade = {
|
|
close_profit: 0.5,
|
|
current_profit: 0.5,
|
|
profit_ratio: 0.5,
|
|
};
|
|
cmp.setProps({ trade });
|
|
await Vue.nextTick();
|
|
expect(cmp.html()).toContain('triangle-up');
|
|
expect(cmp.html()).not.toContain('triangle-down');
|
|
});
|
|
});
|