SNCB E2E/integration tests: un-skip tests

This commit is contained in:
Jannis R 2024-09-25 21:53:00 +02:00
parent 96f97f245e
commit 52f0dd19bb
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5

View file

@ -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,