We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb5a5a6 commit 79a09b2Copy full SHA for 79a09b2
test/index-test.js
@@ -1,14 +1,14 @@
1
'use strict';
2
const assert = require('chai').assert;
3
-describe('index.js', function () {
4
- it('can be required', function () {
+describe('index.js', function() {
+ it('can be required', function( ) {
5
require('../.');
6
});
7
- it('has init', function () {
+ it('has init', function( ){
8
var res = require('../.');
9
assert.ok(res.init);
10
11
- it('init on mainnet', function () {
+ it('init on mainnet', function(){
12
var client = require('../.');
13
assert.ok(client.init(null, 'mainnet'));
14
0 commit comments