Skip to content

Commit 742040c

Browse files
author
gabe
committed
working ish
1 parent 0277083 commit 742040c

File tree

5 files changed

+18
-248
lines changed

5 files changed

+18
-248
lines changed

package-lock.json

Lines changed: 0 additions & 212 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,36 +31,16 @@
3131
"bugs": {
3232
"url": "https://github.com/w3c/vc-json-schema-test-suite/issues"
3333
},
34-
"compilerOptions": {
35-
"target": "ESNext",
36-
"module": "ESNext",
37-
"moduleResolution": "node"
38-
},
3934
"dependencies": {
40-
"@digitalbazaar/did-method-key": "^5.1.0",
41-
"@digitalbazaar/ecdsa-multikey": "^1.1.3",
42-
"@digitalbazaar/http-client": "^3.4.1",
4335
"@digitalbazaar/mocha-w3c-interop-reporter": "^1.4.0",
44-
"@yimura/import-dir": "^0.1.12",
45-
"app-root-path": "^3.1.0",
46-
"base58-universal": "^2.0.0",
4736
"chai": "^4.3.7",
48-
"data-integrity-test-suite-assertion": "github:w3c-ccg/data-integrity-test-suite-assertion",
49-
"jsh": "^0.43.0",
50-
"jsonld-document-loader": "^2.0.0",
51-
"klona": "^2.0.6",
5237
"mocha": "^10.2.0",
5338
"require-dir": "^1.2.0",
54-
"shelljs": "^0.8.5",
55-
"uuid": "^9.0.0",
56-
"vc-test-suite-implementations": "github:w3c/vc-test-suite-implementations"
39+
"shelljs": "^0.8.5"
5740
},
5841
"devDependencies": {
5942
"eslint": "^8.47.0",
60-
"eslint-config-digitalbazaar": "^5.0.1",
6143
"eslint-config-google": "^0.14.0",
62-
"eslint-plugin-jsdoc": "^46.2.6",
63-
"eslint-plugin-react": "^7.33.2",
64-
"eslint-plugin-unicorn": "^47.0.0"
44+
"eslint-plugin-react": "^7.33.2"
6545
}
6646
}

reports/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@
114114
<section class="informative" id="conformance-testing-results">
115115
<h2> Conformance Testing Results </h2>
116116
<p>
117-
Tests passed 10/11 90%
117+
Tests passed 11/11 100%
118118
</p>
119119
<p>
120-
Tests failed 1/11 10%
120+
Tests failed 0/11 0%
121121
</p>
122122
<p>
123-
Failures 1
123+
Failures 0
124124
</p>
125125
<p>
126126
Tests skipped 0
@@ -129,7 +129,7 @@ <h2> Conformance Testing Results </h2>
129129
Total tests 11
130130
</p>
131131
<p>
132-
These tests were run on <time>24 August 2023 at 4:56 pm UTC</time>
132+
These tests were run on <time>24 August 2023 at 5:17 pm UTC</time>
133133
</p>
134134
<section class="informative" id="Key">
135135
<h3>Key</h3>

tests/jsonschema.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ schemaVersions.forEach((schemaVersion) => {
2424
await generateTestResult(i.name, schemaVersionName, VcJsonSchemaTypes.JsonSchema, '1');
2525
this.test.cell = {columnId: i.name, rowId: this.test.title};
2626
const result = await checkTestResult(i.name, schemaVersionName, VcJsonSchemaTypes.JsonSchema, '1');
27-
should().equal(result, TestResult.Success);
27+
console.log(`\nRESULT!!! ${result}\n`);
28+
should().equal(result, TestResult.success);
2829
});
2930

3031
it('2.1 ID - The value MUST be a URL that identifies the schema associated with the verifiable credential.', function() {

0 commit comments

Comments
 (0)