Skip to content

Commit

Permalink
Update readingsCompareMeterQuantity.js
Browse files Browse the repository at this point in the history
  • Loading branch information
alecdog04 committed Dec 17, 2024
1 parent 51d4d23 commit 8bc2fb5
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/server/test/web/readingsCompareMeterQuantity.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,19 @@ mocha.describe('readings API', () => {
expectCompareToEqualExpected(res, expected);
});

// Add C6 here
mocha.it('C6: 28 day shift end 2022-10-31 17:00:00 for 15 minute reading intervals and quantity units & kWh as kWh', async () => {
await prepareTest(unitDatakWh, conversionDatakWh, meterDatakWh);
const unitId = await getUnitId('kWh');
const expected = [108269.924822581, 108889.847659507];
const res = await chai.request(app).get('/api/compareReadings/meters/${METER_ID}')
.query({
curr_start: '2022-10-09 00:00:00',
curr_end: '2022-10-31 17:00:00',
shift: 'P28D',
graphicUnitID:unitId
});
expectCompareToEqualExpected(res, expected);
});

mocha.it('C8: 1 day shift end 2022-10-31 17:00:00 for 15 minute reading intervals and quantity units & kWh as MJ', async () => {
// Use predefined unit and conversion data
Expand Down

0 comments on commit 8bc2fb5

Please sign in to comment.