File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -18,3 +18,4 @@ reports/**
18
18
credentials /* .json
19
19
.vscode
20
20
.localImplementationsConfig.cjs
21
+ localConfig.cjs
Original file line number Diff line number Diff line change
1
+ /*!
2
+ * Copyright (c) 2022-2024 Digital Bazaar, Inc.
3
+ * SPDX-License-Identifier: BSD-3-Clause
4
+ */
5
+ // Rename this file to .localConfig.cjs
6
+ // you can specify a BASE_URL before running the tests such as:
7
+ // BASE_URL=http://localhost:40443/zDdfsdfs npm test
8
+ const baseUrl = process . env . BASE_URL || 'https://localhost:34557' ;
9
+
10
+ module . exports = {
11
+ settings : {
12
+ enableInteropTests : false , // default
13
+ testAllImplementations : false // default
14
+ } ,
15
+ implementations : [ {
16
+ name : 'My Company' ,
17
+ implementation : 'My Implementation Name' ,
18
+ issuers : [ {
19
+ id : 'did:myMethod:implementation:issuer:id' ,
20
+ endpoint : `${ baseUrl } /credentials/issue` ,
21
+ supports : {
22
+ vc : [ '1.1' , '2.0' ]
23
+ } ,
24
+ tags : [ 'Ed25519Signature2020' , 'localhost' ]
25
+ } ] ,
26
+ verifiers : [ {
27
+ id : 'did:myMethod:implementation:verifier:id' ,
28
+ endpoint : `${ baseUrl } /credentials/verify` ,
29
+ tags : [ 'Ed25519Signature2020' , 'localhost' ]
30
+ } ]
31
+ } ]
32
+ } ;
You can’t perform that action at this time.
0 commit comments