Browse Source

Introduce fast-redact

Co-Authored-By: Valentin Zickner <valentin@coderworks.de>
pull/6269/head
Thomas Kaul 2 days ago
parent
commit
8ba3add5d9
  1. 20
      apps/api/src/helper/object.helper.spec.ts

20
apps/api/src/helper/object.helper.spec.ts

@ -144,7 +144,7 @@ describe('redactAttributes', () => {
],
dataSource: 'EOD_HISTORICAL_DATA',
dateOfFirstActivity: '2021-11-30T23:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 2665.5,
grossPerformancePercent: 0.3183066634822068,
grossPerformancePercentWithCurrencyEffect: 0.3183066634822068,
@ -243,7 +243,7 @@ describe('redactAttributes', () => {
],
dataSource: 'YAHOO',
dateOfFirstActivity: '2018-09-30T22:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 8689.05,
grossPerformancePercent: 0.8594552890963852,
grossPerformancePercentWithCurrencyEffect: 0.8594552890963852,
@ -294,7 +294,7 @@ describe('redactAttributes', () => {
countries: [],
dataSource: 'COINGECKO',
dateOfFirstActivity: '2017-08-15T22:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 34985.0332704,
grossPerformancePercent: 17.4925166352,
grossPerformancePercentWithCurrencyEffect: 17.4925166352,
@ -469,7 +469,7 @@ describe('redactAttributes', () => {
],
dataSource: 'MANUAL',
dateOfFirstActivity: '2021-03-31T22:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 3533.389614611676,
grossPerformancePercent: 0.27579517683678895,
grossPerformancePercentWithCurrencyEffect: 0.458553421589667,
@ -521,7 +521,7 @@ describe('redactAttributes', () => {
],
dataSource: 'YAHOO',
dateOfFirstActivity: '2023-01-02T23:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 5653.2,
grossPerformancePercent: 0.7865431171216295,
grossPerformancePercentWithCurrencyEffect: 0.7865431171216295,
@ -573,7 +573,7 @@ describe('redactAttributes', () => {
],
dataSource: 'YAHOO',
dateOfFirstActivity: '2017-01-02T23:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 36920.500000005,
grossPerformancePercent: 17.184314638161936,
grossPerformancePercentWithCurrencyEffect: 17.184314638161936,
@ -655,7 +655,7 @@ describe('redactAttributes', () => {
],
dataSource: 'YAHOO',
dateOfFirstActivity: '2019-02-28T23:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 5856.3,
grossPerformancePercent: 0.8832083851170418,
grossPerformancePercentWithCurrencyEffect: 0.8832083851170418,
@ -1055,7 +1055,7 @@ describe('redactAttributes', () => {
],
dataSource: 'YAHOO',
dateOfFirstActivity: '2018-02-28T23:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 4534.60577952194,
grossPerformancePercent: 0.3683200415015591,
grossPerformancePercentWithCurrencyEffect: 0.5806366182968891,
@ -1337,7 +1337,7 @@ describe('redactAttributes', () => {
],
dataSource: 'YAHOO',
dateOfFirstActivity: '2021-08-18T22:00:00.000Z',
dividend: null,
dividend: 0,
grossPerformance: 2281.298817228297,
grossPerformancePercent: 0.3474381850624522,
grossPerformancePercentWithCurrencyEffect: 0.28744846894552306,
@ -1455,7 +1455,7 @@ describe('redactAttributes', () => {
assetClass: 'LIQUIDITY',
assetSubClass: 'CASH',
countries: [],
dividend: null,
dividend: 0,
grossPerformance: 0,
grossPerformancePercent: 0,
grossPerformancePercentWithCurrencyEffect: 0,

Loading…
Cancel
Save