Skip to content

Commit 917d16d

Browse files
authored
Remove skip for challenge redislabs-training#6
1 parent 31402e9 commit 917d16d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/feed_dao_redis_impl.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,19 @@ const insertAndReadBackFromStream = async (siteId) => {
8686
};
8787

8888
// This test is for Challenge #6.
89-
test.skip(`${testSuiteName}: insert and read back from global stream`, async () => {
89+
test(`${testSuiteName}: insert and read back from global stream`, async () => {
9090
await insertAndReadBackFromStream();
9191
});
9292

9393
// This test is for Challenge #6.
94-
test.skip(`${testSuiteName}: read stream for site that does not exist`, async () => {
94+
test(`${testSuiteName}: read stream for site that does not exist`, async () => {
9595
const meterReadings = await redisFeedDAO.getRecentForSite(-1, 100);
9696

9797
expect(meterReadings.length).toBe(0);
9898
});
9999

100100
// This test is for Challenge #6.
101-
test.skip(`${testSuiteName}: insert and read back from site specific stream`, async () => {
101+
test(`${testSuiteName}: insert and read back from site specific stream`, async () => {
102102
await insertAndReadBackFromStream(998);
103103
});
104104

0 commit comments

Comments
 (0)