db-vendo-client/test/e2e/common.js
Kristjan ESPERANTO 66d9fb5194
apply linting rules
follow-up of 228c7253
2024-02-10 16:50:12 +01:00

12 lines
344 B
JavaScript

import tap from 'tap';
import {createClient} from '../../index.js';
import {profile as vbbProfile} from '../../p/vbb/index.js';
const client = createClient(vbbProfile, 'public-transport/hafas-client:test');
tap.test('exposes the profile', (t) => {
t.ok(client.profile);
t.equal(client.profile.endpoint, vbbProfile.endpoint);
t.end();
});