Add "strict": true to tsconfig.json (#994)

- Remove process.browser
This commit is contained in:
Elliot Lee
2019-04-11 15:48:23 -07:00
committed by GitHub
parent 1abcef73a0
commit 50fc36ec3e
40 changed files with 76 additions and 74 deletions

View File

@@ -15,11 +15,11 @@ const utils = RippleAPI._PRIVATE.ledgerUtils;
const ledgerClosed = require('./fixtures/rippled/ledger-close-newer');
const schemaValidator = RippleAPI._PRIVATE.schemaValidator;
const binary = require('ripple-binary-codec');
const BigNumber = require('bignumber.js')
const BigNumber = require('bignumber.js');
assert.options.strict = true;
// how long before each test case times out
const TIMEOUT = process.browser ? 25000 : 10000;
const TIMEOUT = 20000;
function unused() {
}