From 52f0dd19bb6714940ada0198de4ca4f3714765eb Mon Sep 17 00:00:00 2001 From: Jannis R Date: Wed, 25 Sep 2024 21:53:00 +0200 Subject: [PATCH] =?UTF-8?q?SNCB=20E2E/integration=20tests:=20un-skip=20tes?= =?UTF-8?q?ts=20=E2=9C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/e2e/sncb.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/e2e/sncb.js b/test/e2e/sncb.js index 6a2c8212..27bf1cd9 100644 --- a/test/e2e/sncb.js +++ b/test/e2e/sncb.js @@ -33,7 +33,7 @@ const gentPaddenhoek = { latitude: 51.051691, longitude: 3.724914, }; -tap.skip('journeys – Gent Sant Pieters to Bruxelles Midi', async (t) => { +tap.test('journeys – Gent Sant Pieters to Bruxelles Midi', async (t) => { const res = await client.journeys(gentStPieters, bruxellesMidi, { results: 4, departure: when, @@ -53,7 +53,7 @@ tap.skip('journeys – Gent Sant Pieters to Bruxelles Midi', async (t) => { // todo: via works – with detour // todo: without detour -tap.skip('trip details', async (t) => { +tap.test('trip details', async (t) => { const res = await client.journeys(gentStPieters, bruxellesMidi, { results: 1, departure: when, }); @@ -68,7 +68,7 @@ tap.skip('trip details', async (t) => { t.end(); }); -tap.skip('arrivals at Bruxelles Midi', async (t) => { +tap.test('arrivals at Bruxelles Midi', async (t) => { const res = await client.arrivals(bruxellesMidi, { duration: 10, when, }); @@ -84,7 +84,7 @@ tap.skip('arrivals at Bruxelles Midi', async (t) => { // todo: nearby -tap.skip('radar', async (t) => { +tap.test('radar', async (t) => { const res = await client.radar({ north: 51.065, west: 3.688, @@ -98,7 +98,7 @@ tap.skip('radar', async (t) => { t.end(); }); -tap.skip('reachableFrom', async (t) => { +tap.test('reachableFrom', async (t) => { await testReachableFrom({ test: t, reachableFrom: client.reachableFrom,