Skip to content

Commit 200b48d

Browse files
author
Aleix Morgadas
committed
UPGRADED version to 0.10.1
CHANGED README adding NodeJS10 as supported plaform CHANGED MosaicService.spec.ts enabling the tests
1 parent 6f71e1f commit 200b48d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ with the NEM2 (a.k.a Catapult)
1414

1515
- NodeJS 8.9.X
1616
- NodeJS 9.X.X
17+
- NodeJS 10.X.X
1718

1819
## Documentation and Getting Started
1920

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nem2-sdk",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Reactive Nem2 sdk for typescript and javascript",
55
"scripts": {
66
"pretest": "npm run build",

test/service/MosaicService.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {MosaicService} from '../../src/service/MosaicService';
2727
import {MosaicView} from '../../src/service/MosaicView';
2828
import * as conf from '../conf/conf.spec';
2929

30-
describe.skip('MosaicService', () => {
30+
describe('MosaicService', () => {
3131
it('mosaicsView', () => {
3232
const mosaicId = new MosaicId([3646934825, 3576016193]);
3333
const mosaicService = new MosaicService(

test/service/NamespaceService.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ describe('NamespaceService', () => {
5555
namespaceService = new NamespaceService(namespaceHttp);
5656
});
5757

58-
it('should return the NamespaceInfo + name', () => {
58+
it('should return the NamespaceInfo + name for a root namespace', () => {
5959
return namespaceService.namespace(rootNamespace.id).toPromise().then((namespace) => {
6060
expect(namespace.name).to.be.equal('nem2tests');
6161
});
6262
});
6363

64-
it('should return the NamespaceInfo + name', () => {
64+
it('should return the NamespaceInfo + name for a subnamespace', () => {
6565
return namespaceService.namespace(subnamespace.id).toPromise().then((namespace) => {
6666
expect(namespace.name).to.be.equal('nem2tests.level2');
6767
});

0 commit comments

Comments
 (0)