Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
DigiGov-OSS
getNncIdentityClient
Commits
09046232
Commit
09046232
authored
Jan 10, 2022
by
Panagiotis Skarvelis
Browse files
make is simple
parent
f94e9bf1
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/test.ts
View file @
09046232
...
...
@@ -3,10 +3,10 @@ import config from './config.json';
const
test
=
async
()
=>
{
try
{
const
Identity
=
await
getIdentity
(
"
052704062
"
,
config
.
user
,
config
.
pass
);
console
.
log
(
"
getNncIdentityOutputRecord=
"
,
Identity
)
;
return
Identity
;
}
catch
(
error
)
{
console
.
log
(
error
);
}
}
test
().
then
(()
=>
{
console
.
log
(
'
done
'
);
});
\ No newline at end of file
test
().
then
((
identity
)
=>
{
console
.
log
(
'
getNncIdentityOutputRecord
'
,
identity
);
});
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment