UNPKG
kuna-api-sdk
Version:
latest (3.1.2)
3.1.2
3.1.1
3.1.0
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.1.7
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
Kuna api sdk - V3, V2
github.com/Nikeweke/kuna-api-sdk
Nikeweke/kuna-api-sdk
kuna-api-sdk
/
src
/
__tests__
/
check-env-vars.test.ts
14 lines
(12 loc)
•
252 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
keys = [
'KUNA_PUBLIC_KEY'
,
'KUNA_SECRET_KEY'
, ]
// unit tests for env file
describe
(
'env'
,
() =>
{
for
(
const
key
of
keys) {
it
(
`should have a
${key}
`
,
() =>
{
expect
(process.
env
[key]).
toBeDefined
(); }); } })