Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OCM-Engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
xfsc
Organization Credential Manager
OCM-Engine
Merge requests
!13
feat(ssi): schema functionality
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat(ssi): schema functionality
tsabolov/ocm-engine:schemas
into
main
Overview
0
Commits
2
Pipelines
0
Changes
19
Merged
Berend Sliedrecht
requested to merge
tsabolov/ocm-engine:schemas
into
main
1 year ago
Overview
0
Commits
2
Pipelines
0
Changes
16
Expand
Register schema
Get all schemas
Get Schema By Id
Refactored the dids module so that you can register an indy did for a tenant with a custom seed
0
0
Merge request reports
Compare
version 4
version 4
037412fb
1 year ago
version 3
037412fb
1 year ago
version 2
efa93dad
1 year ago
version 1
3ce515c6
1 year ago
main (base)
and
latest version
latest version
e865b95f
2 commits,
1 year ago
version 4
037412fb
5 commits,
1 year ago
version 3
037412fb
70 commits,
1 year ago
version 2
efa93dad
71 commits,
1 year ago
version 1
3ce515c6
63 commits,
1 year ago
Show latest version
16 files
+
679
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
apps/schema-manager/src/__tests__/application.spec.ts
0 → 100644
+
26
−
0
Options
import
type
{
INestApplication
}
from
'
@nestjs/common
'
;
import
{
Test
}
from
'
@nestjs/testing
'
;
import
{
Application
}
from
'
../application.js
'
;
describe
(
'
Application
'
,
()
=>
{
let
app
:
INestApplication
;
beforeAll
(
async
()
=>
{
const
moduleFixture
=
await
Test
.
createTestingModule
({
imports
:
[
Application
],
}).
compile
();
app
=
moduleFixture
.
createNestApplication
();
await
app
.
init
();
});
afterAll
(
async
()
=>
{
await
app
.
close
();
});
it
(
'
should be defined
'
,
()
=>
{
expect
(
app
).
toBeDefined
();
});
});
Loading