Skip to content

Commit

Permalink
Merge pull request #1413 from alecdog04/development
Browse files Browse the repository at this point in the history
Update readingsCompareMeterQuantity.js
  • Loading branch information
huss authored Dec 23, 2024
2 parents 51d4d23 + d03f2a5 commit a37216d
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:12:34 (partial hour) 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:12:34',
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 a37216d

Please sign in to comment.