Skip to content

Commit

Permalink
fix: moved globalRootKeyPems.ts to fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
tegefaulkes committed Jul 26, 2022
1 parent b2382e6 commit 8c545a5
Show file tree
Hide file tree
Showing 86 changed files with 85 additions and 85 deletions.
2 changes: 1 addition & 1 deletion tests/PolykeyAgent.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as errors from '@/errors';
import * as keysUtils from '@/keys/utils';
import config from '@/config';
import { promise } from '@/utils/index';
import { globalRootKeyPems } from './globalRootKeyPems';
import { globalRootKeyPems } from './fixtures/globalRootKeyPems';

describe('PolykeyAgent', () => {
const password = 'password';
Expand Down
2 changes: 1 addition & 1 deletion tests/PolykeyClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import { PolykeyClient, PolykeyAgent } from '@';
import { Session } from '@/sessions';
import config from '@/config';
import { globalRootKeyPems } from './globalRootKeyPems';
import { globalRootKeyPems } from './fixtures/globalRootKeyPems';

describe('PolykeyClient', () => {
const password = 'password';
Expand Down
2 changes: 1 addition & 1 deletion tests/agent/GRPCClientAgent.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import * as agentErrors from '@/agent/errors';
import * as keysUtils from '@/keys/utils';
import { timerStart } from '@/utils';
import * as testAgentUtils from './utils';
import { globalRootKeyPems } from '../globalRootKeyPems';
import { globalRootKeyPems } from '../fixtures/globalRootKeyPems';

describe(GRPCClientAgent.name, () => {
const host = '127.0.0.1' as Host;
Expand Down
2 changes: 1 addition & 1 deletion tests/agent/service/nodesChainDataGet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as nodesPB from '@/proto/js/polykey/v1/nodes/nodes_pb';
import * as nodesUtils from '@/nodes/utils';
import nodesClosestLocalNodesGet from '@/agent/service/nodesClosestLocalNodesGet';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('nodesClosestLocalNode', () => {
const logger = new Logger('nodesClosestLocalNode test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/agent/service/nodesClosestLocalNode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as utilsPB from '@/proto/js/polykey/v1/utils/utils_pb';
import * as nodesUtils from '@/nodes/utils';
import nodesChainDataGet from '@/agent/service/nodesChainDataGet';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('nodesChainDataGet', () => {
const logger = new Logger('nodesChainDataGet test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/agent/service/nodesCrossSignClaim.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import * as nodesUtils from '@/nodes/utils';
import * as claimsUtils from '@/claims/utils';
import * as grpcErrors from '@/grpc/errors';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('nodesCrossSignClaim', () => {
const logger = new Logger('nodesCrossSignClaim test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/agent/service/nodesHolePunchMessage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as nodesPB from '@/proto/js/polykey/v1/nodes/nodes_pb';
import * as nodesUtils from '@/nodes/utils';
import nodesHolePunchMessageSend from '@/agent/service/nodesHolePunchMessageSend';
import * as networkUtils from '@/network/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('nodesHolePunchMessage', () => {
const logger = new Logger('nodesHolePunchMessage test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/agent/service/notificationsSend.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import * as notificationsPB from '@/proto/js/polykey/v1/notifications/notificati
import * as nodesUtils from '@/nodes/utils';
import * as notificationsUtils from '@/notifications/utils';
import { expectRemoteError } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('notificationsSend', () => {
const logger = new Logger('notificationsSend test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/agent/lock.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Session from '@/sessions/Session';
import config from '@/config';
import * as testBinUtils from '../utils';
import { runTestIfPlatforms } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

jest.mock('prompts');
const mockedPrompts = mocked(prompts);
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/agent/lockall.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import config from '@/config';
import * as errors from '@/errors';
import * as testBinUtils from '../utils';
import { runTestIfPlatforms } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

/**
* Mock prompts module which is used prompt for password
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/agent/start.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import config from '@/config';
import * as keysUtils from '@/keys/utils';
import * as testBinUtils from '../utils';
import { runDescribeIfPlatforms, runTestIfPlatforms } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('start', () => {
const logger = new Logger('start test', LogLevel.WARN, [new StreamHandler()]);
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/agent/status.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as nodesUtils from '@/nodes/utils';
import config from '@/config';
import * as testBinUtils from '../utils';
import { runTestIfPlatforms } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('status', () => {
const logger = new Logger('status test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/agent/stop.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as binErrors from '@/bin/errors';
import * as clientErrors from '@/client/errors';
import * as testBinUtils from '../utils';
import { runTestIfPlatforms } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('stop', () => {
const logger = new Logger('stop test', LogLevel.WARN, [new StreamHandler()]);
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/agent/unlock.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Session from '@/sessions/Session';
import config from '@/config';
import * as testBinUtils from '../utils';
import { runTestIfPlatforms } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('unlock', () => {
const logger = new Logger('unlock test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/identities/allowDisallowPermissions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as claimsUtils from '@/claims/utils';
import * as identitiesUtils from '@/identities/utils';
import * as testBinUtils from '../utils';
import TestProvider from '../../identities/TestProvider';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('allow/disallow/permissions', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/identities/authenticateAuthenticated.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { sysexits } from '@/utils';
import * as identitiesUtils from '@/identities/utils';
import * as testBinUtils from '../utils';
import TestProvider from '../../identities/TestProvider';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('authenticate/authenticated', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/identities/claim.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { sysexits } from '@/utils';
import * as identitiesUtils from '@/identities/utils';
import * as testBinUtils from '../utils';
import TestProvider from '../../identities/TestProvider';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('claim', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/identities/discoverGet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import * as nodesUtils from '@/nodes/utils';
import * as testBinUtils from '../utils';
import * as testNodesUtils from '../../nodes/utils';
import TestProvider from '../../identities/TestProvider';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('discover/get', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/identities/search.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { sysexits } from '@/utils';
import * as identitiesUtils from '@/identities/utils';
import * as testBinUtils from '../utils';
import TestProvider from '../../identities/TestProvider';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('search', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/identities/trustUntrustList.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as claimsUtils from '@/claims/utils';
import * as identitiesUtils from '@/identities/utils';
import * as testBinUtils from '../utils';
import TestProvider from '../../identities/TestProvider';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('trust/untrust/list', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/keys/cert.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('cert', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/keys/certchain.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('certchain', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/keys/encryptDecrypt.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path from 'path';
import fs from 'fs';
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('encrypt-decrypt', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/keys/password.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path from 'path';
import fs from 'fs';
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('password', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/keys/root.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('root', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/keys/signVerify.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path from 'path';
import fs from 'fs';
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('sign-verify', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/nodes/add.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import * as nodesUtils from '@/nodes/utils';
import NodeManager from '@/nodes/NodeManager';
import * as testBinUtils from '../utils';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('add', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/nodes/claim.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import PolykeyAgent from '@/PolykeyAgent';
import * as nodesUtils from '@/nodes/utils';
import * as testBinUtils from '../utils';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('claim', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/nodes/find.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as nodesUtils from '@/nodes/utils';
import { sysexits } from '@/errors';
import * as testBinUtils from '../utils';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('find', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/nodes/ping.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as nodesUtils from '@/nodes/utils';
import { sysexits } from '@/errors';
import * as testBinUtils from '../utils';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('ping', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/notifications/sendReadClear.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import fs from 'fs';
import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import * as nodesUtils from '@/nodes/utils';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('send/read/claim', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/secrets/secrets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Logger, { LogLevel, StreamHandler } from '@matrixai/logger';
import PolykeyAgent from '@/PolykeyAgent';
import { vaultOps } from '@/vaults';
import * as testBinUtils from '../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('CLI secrets', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/sessions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { sleep } from '@/utils';
import config from '@/config';
import * as clientErrors from '@/client/errors';
import * as testBinUtils from './utils';
import { globalRootKeyPems } from '../globalRootKeyPems';
import { globalRootKeyPems } from '../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../utils';

jest.mock('prompts');
Expand Down
2 changes: 1 addition & 1 deletion tests/bin/vaults/vaults.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import sysexits from '@/utils/sysexits';
import NotificationsManager from '@/notifications/NotificationsManager';
import * as testBinUtils from '../utils';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';
import { runTestIfPlatforms } from '../../utils';

describe('CLI vaults', () => {
Expand Down
2 changes: 1 addition & 1 deletion tests/claims/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as claimsErrors from '@/claims/errors';
import { utils as keysUtils } from '@/keys';
import { utils as nodesUtils } from '@/nodes';
import * as testNodesUtils from '../nodes/utils';
import { globalRootKeyPems } from '../globalRootKeyPems';
import { globalRootKeyPems } from '../fixtures/globalRootKeyPems';

describe('claims/utils', () => {
// Node Ids
Expand Down
2 changes: 1 addition & 1 deletion tests/client/GRPCClientClient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as clientErrors from '@/client/errors';
import * as utilsPB from '@/proto/js/polykey/v1/utils/utils_pb';
import { timerStart } from '@/utils';
import * as testClientUtils from './utils';
import { globalRootKeyPems } from '../globalRootKeyPems';
import { globalRootKeyPems } from '../fixtures/globalRootKeyPems';

describe(GRPCClientClient.name, () => {
const password = 'password';
Expand Down
2 changes: 1 addition & 1 deletion tests/client/service/agentLockAll.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import * as utilsPB from '@/proto/js/polykey/v1/utils/utils_pb';
import * as keysUtils from '@/keys/utils';
import * as clientUtils from '@/client/utils/utils';
import { timerStart } from '@/utils/index';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('agentLockall', () => {
const logger = new Logger('agentLockall test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/client/service/agentStatus.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { ClientServiceService } from '@/proto/js/polykey/v1/client_service_grpc_
import * as agentPB from '@/proto/js/polykey/v1/agent/agent_pb';
import * as utilsPB from '@/proto/js/polykey/v1/utils/utils_pb';
import * as clientUtils from '@/client/utils/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('agentStatus', () => {
const logger = new Logger('agentStatus test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/client/service/agentStop.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import config from '@/config';
import { ClientServiceService } from '@/proto/js/polykey/v1/client_service_grpc_pb';
import * as utilsPB from '@/proto/js/polykey/v1/utils/utils_pb';
import * as clientUtils from '@/client/utils/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('agentStop', () => {
const logger = new Logger('agentStop test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/client/service/gestaltsDiscoveryByIdentity.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import * as utilsPB from '@/proto/js/polykey/v1/utils/utils_pb';
import * as identitiesPB from '@/proto/js/polykey/v1/identities/identities_pb';
import * as clientUtils from '@/client/utils/utils';
import * as keysUtils from '@/keys/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('gestaltsDiscoveryByIdentity', () => {
const logger = new Logger('gestaltsDiscoveryByIdentity test', LogLevel.WARN, [
Expand Down
2 changes: 1 addition & 1 deletion tests/client/service/gestaltsDiscoveryByNode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import * as clientUtils from '@/client/utils/utils';
import * as keysUtils from '@/keys/utils';
import * as nodesUtils from '@/nodes/utils';
import * as testNodesUtils from '../../nodes/utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('gestaltsDiscoveryByNode', () => {
const logger = new Logger('gestaltsDiscoveryByNode test', LogLevel.WARN, [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import * as clientUtils from '@/client/utils/utils';
import * as nodesUtils from '@/nodes/utils';
import TestProvider from '../../identities/TestProvider';
import { expectRemoteError } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('gestaltsGestaltTrustByIdentity', () => {
const logger = new Logger(
Expand Down
2 changes: 1 addition & 1 deletion tests/client/service/gestaltsGestaltTrustByNode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import * as keysUtils from '@/keys/utils';
import * as clientUtils from '@/client/utils/utils';
import * as nodesUtils from '@/nodes/utils';
import TestProvider from '../../identities/TestProvider';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('gestaltsGestaltTrustByNode', () => {
const logger = new Logger('gestaltsGestaltTrustByNode test', LogLevel.INFO, [
Expand Down
2 changes: 1 addition & 1 deletion tests/client/service/identitiesClaim.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import * as nodesUtils from '@/nodes/utils';
import * as validationErrors from '@/validation/errors';
import TestProvider from '../../identities/TestProvider';
import { expectRemoteError } from '../../utils';
import { globalRootKeyPems } from '../../globalRootKeyPems';
import { globalRootKeyPems } from '../../fixtures/globalRootKeyPems';

describe('identitiesClaim', () => {
const logger = new Logger('identitiesClaim test', LogLevel.WARN, [
Expand Down
Loading

0 comments on commit 8c545a5

Please sign in to comment.