build: update dependencies

This commit is contained in:
Jovan Krunić
2019-01-28 14:11:43 +01:00
parent db240aa4b1
commit e37a23e8e0
9 changed files with 260 additions and 159 deletions

View File

@@ -22,6 +22,7 @@ import {
SCSearchRequest,
SCSearchResponse,
SCSearchRoute,
SCThingType,
} from '@openstapps/core';
import * as chai from 'chai';
import * as chaiAsPromised from 'chai-as-promised';
@@ -76,7 +77,7 @@ export class CopySpec {
indexed: moment().format(),
name: 'bar',
},
type: 'dish',
type: SCThingType.Dish,
uid: 'foo',
}],
facets: [],
@@ -119,7 +120,7 @@ export class CopySpec {
from: 'http://foo.bar',
source: 'stapps-copy',
to: 'http://localhost',
type: 'dish',
type: SCThingType.Dish,
version: 'foo.bar.foobar',
});
}
@@ -147,7 +148,7 @@ export class CopySpec {
indexed: moment().format(),
name: 'bar',
},
type: 'dish',
type: SCThingType.Dish,
uid: 'foo',
}],
facets: [],
@@ -190,7 +191,7 @@ export class CopySpec {
from: 'http://foo.bar',
source: 'stapps-copy',
to: 'http://localhost',
type: 'dish',
type: SCThingType.Dish,
version: 'foo.bar.foobar',
}).should.be.rejectedWith(ApiError);
}