Skip to content

Commit 7e8e366

Browse files
committed
RuntimeCatalogue tests removed. Other tests depending on RuntimeCatalogue excluded
1 parent 6eefbe0 commit 7e8e366

File tree

6 files changed

+548
-353
lines changed

6 files changed

+548
-353
lines changed

karma.conf.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,20 @@ module.exports = function(config) {
33
basePath: '',
44
frameworks: ['mocha', 'chai', 'sinon'],
55
files: [
6-
'./test/SyncStorageManager.spec.js'
6+
'./test/*.spec.js'
77
],
88
exclude: [
99
'./test/GraphConnector.spec.js',
1010
'./test/PolicyEngine.spec.js',
1111
'./test/HypertyResourceStorage.spec.js',
12-
'./test/RuntimeCatalogue.spec.js',
1312
'./test/DataObjectsStorage.spec.js',
1413
'./test/StorageManager.spec.js',
1514
'./test/PersistenceManager.spec.js',
16-
'./test/SyncherManager.spec.js'
15+
'./test/CoreDiscovery.spec.js',
16+
'./test/Descriptors.spec.js',
17+
'./test/SyncherManager.spec.js',
18+
'./test/RuntimeUA.spec.js',
19+
'./test/Registry.spec.js'
1720

1821
],
1922
preprocessors: {

package-lock.json

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

test/CatalogueDataObjectFactory.spec.js

Lines changed: 0 additions & 194 deletions
This file was deleted.

test/CoreDiscovery.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ import GraphConnector from '../src/graphconnector/GraphConnector';
1414
import CoreDiscovery from '../src/discovery/CoreDiscovery';
1515
import Registry from '../src/registry/Registry';
1616
import AddressAllocation from '../src/allocation/AddressAllocation';
17-
import RuntimeCatalogue from '../src/runtime-catalogue/RuntimeCatalogue';
17+
//import RuntimeCatalogue from '../src/runtime-catalogue/RuntimeCatalogue';
1818

1919
let msgbus;
2020
let runtimeURL = 'hyperty-runtime://ua.pt/123';
2121
let domain = 'ua.pt';
2222
let appSandbox = runtimeFactory.createAppSandbox();
2323
let storageManager = runtimeFactory.storageManager('capabilities');
24-
let runtimeCatalogue = new RuntimeCatalogue(runtimeFactory);
24+
//let runtimeCatalogue = new RuntimeCatalogue(runtimeFactory);
2525
let coreDiscovery;
2626
let runtimeCapabilities = runtimeFactory.runtimeCapabilities(storageManager);
2727

test/RuntimeCatalogue.spec.js

Lines changed: 0 additions & 115 deletions
This file was deleted.

0 commit comments

Comments
 (0)