UNPKG

@allgroup/yandex-taxi-fleet-api

Version:

Unofficial yandex taxi fleet api library

9 lines (8 loc) 260 B
import { Fleet } from "."; import { Fleet as OriginalFleet} from "./src/fleet"; import { describe, it } from 'vitest'; describe('Index file', () => { it('should export Fleet class', ({ expect }) => { expect(Fleet).toEqual(OriginalFleet); }) })