Skip to content

Commit 02fdd8a

Browse files
authored
Revert "add missing helper functions"
This reverts commit a7e6255.
1 parent a7e6255 commit 02fdd8a

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

tests/90-algorithms-rdfc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
isValidUtf8,
1212
setupReportableTestSuite,
1313
setupRow
14-
} from './helpers.js';
14+
} from '../helpers.js';
1515
import chai from 'chai';
1616
import {endpoints} from 'vc-test-suite-implementations';
1717

tests/helpers.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import * as bs64 from 'base64url-universal';
77
import {createRequire} from 'node:module';
88
import {isUtf8} from 'node:buffer';
99
import {klona} from 'klona';
10-
import {readFileSync} from 'fs';
1110
import {v4 as uuidv4} from 'uuid';
1211

1312
export const require = createRequire(import.meta.url);
@@ -36,9 +35,6 @@ export const ISOTimeStamp = ({date = new Date()} = {}) => {
3635
*
3736
* @returns {Promise<object>} The resulting issuance result.
3837
*/
39-
40-
export const config = JSON.parse(readFileSync('./config/runner.json'));
41-
4238
export const createInitialVc = async ({
4339
issuer,
4440
vc,
@@ -274,11 +270,3 @@ export function createValidCredential(version = 2) {
274270
}
275271
return credential;
276272
}
277-
278-
export function setupRow() {
279-
// append test meta data to the it/test this.
280-
this.currentTest.cell = {
281-
columnId: this.currentTest.parent.title,
282-
rowId: this.currentTest.title
283-
};
284-
}

0 commit comments

Comments
 (0)