UNPKG
@applica-software-guru/crud-client
Version:
latest (1.1.46)
1.1.46
1.1.44
1.1.43
1.1.42
1.1.41
1.1.40
1.1.39
1.1.38
1.1.37
1.1.36
1.1.35
1.1.34
1.1.33
1.1.32
1.1.28
1.1.27
1.1.26
1.1.25
1.0.24
1.0.21
1.0.20
1.0.16
1.0.15
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
Libreria per l'accesso ai servizi REST di Applica.
wiki.applica.guru/it/moduli/crud-client/home
@applica-software-guru/crud-client
/
src
/
tests
/
base.test.ts
11 lines
(8 loc)
•
299 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { API_URL, createProviders }
from
'./config'
; import { describe, expect, it }
from
'vitest'
; describe(
'test base stuff'
,
async
() => {
const
{ dataProvider } = createProviders(); it(
'should get valid api url'
,
async
() => { expect(dataProvider.getApiUrl()).toBe(API_URL); }); });