Skip to content

Commit 810f663

Browse files
committed
remove unnecessary test skips
1 parent f9889f6 commit 810f663

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/lib/server/services/qualityControlFlag/QcFlagService.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ module.exports = () => {
971971
assert.strictEqual(response.length, 0, 'Response should be empty array');
972972
});
973973

974-
it.skip('should fail to create quality control flag because qc flag `to` timestamp is greater than run.lastTfTimestamp', async () => {
974+
it('should fail to create quality control flag because qc flag `to` timestamp is greater than run.lastTfTimestamp', async () => {
975975
const period = {
976976
from: new Date('2019-08-08 13:17:19').getTime(),
977977
to: new Date('2019-08-09 15:49:01').getTime(),
@@ -995,7 +995,7 @@ module.exports = () => {
995995
assert.strictEqual(response.length, 0, 'Response should be empty array');
996996
});
997997

998-
it.skip('should fail to create quality control flag because qc flag `from` timestamp is greater than `to` timestamp', async () => {
998+
it('should fail to create quality control flag because qc flag `from` timestamp is greater than `to` timestamp', async () => {
999999
const qcFlag = {
10001000
from: new Date('2019-08-09 04:16:40').getTime(), // Failing property
10011001
to: new Date('2019-08-08 21:20:00').getTime(), // Failing property

0 commit comments

Comments
 (0)