Skip to content

Commit

Permalink
UPGRADED version to 0.10.1
Browse files Browse the repository at this point in the history
CHANGED README adding NodeJS10 as supported plaform
CHANGED MosaicService.spec.ts enabling the tests
  • Loading branch information
Aleix Morgadas committed Jul 17, 2018
1 parent 6f71e1f commit 200b48d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ with the NEM2 (a.k.a Catapult)

- NodeJS 8.9.X
- NodeJS 9.X.X
- NodeJS 10.X.X

## Documentation and Getting Started

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nem2-sdk",
"version": "0.10.0",
"version": "0.10.1",
"description": "Reactive Nem2 sdk for typescript and javascript",
"scripts": {
"pretest": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion test/service/MosaicService.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {MosaicService} from '../../src/service/MosaicService';
import {MosaicView} from '../../src/service/MosaicView';
import * as conf from '../conf/conf.spec';

describe.skip('MosaicService', () => {
describe('MosaicService', () => {
it('mosaicsView', () => {
const mosaicId = new MosaicId([3646934825, 3576016193]);
const mosaicService = new MosaicService(
Expand Down
4 changes: 2 additions & 2 deletions test/service/NamespaceService.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ describe('NamespaceService', () => {
namespaceService = new NamespaceService(namespaceHttp);
});

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

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

0 comments on commit 200b48d

Please sign in to comment.