mirror of
				https://github.com/public-transport/db-vendo-client.git
				synced 2025-10-31 16:16:32 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			330 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			330 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict'
 | |
| 
 | |
| const test = require('tape')
 | |
| 
 | |
| const createClient = require('../..')
 | |
| const vbbProfile = require('../../p/vbb')
 | |
| 
 | |
| const client = createClient(vbbProfile, 'public-transport/hafas-client:test')
 | |
| 
 | |
| test('exposes the profile', (t) => {
 | |
| 	t.ok(client.profile)
 | |
| 	t.equal(client.profile.endpoint, vbbProfile.endpoint)
 | |
| 	t.end()
 | |
| })
 |