UNPKG
@allgroup/yandex-taxi-fleet-api
Version:
latest (0.0.7)
1.0.0-alpha
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.2-alpha-debug3
0.0.2-alpha-debug2
0.0.2-alpha-debug1
0.0.2-alpha-debug
0.0.2-alpha
0.0.1
0.0.1-alpha
Unofficial yandex taxi fleet api library
@allgroup/yandex-taxi-fleet-api
/
index.spec.ts
9 lines
(8 loc)
•
260 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
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
); }) })