mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix mocha/max-top-level-suites issues (#9699)
Refs #9663 This change enables `mocha/max-top-level-suites` and fixes the issues raised by the rule.
This commit is contained in:
parent
c47d93d9bc
commit
80e2a4496e
@ -92,7 +92,6 @@ module.exports = {
|
||||
'node/no-sync': 'off',
|
||||
'node/no-unpublished-import': 'off',
|
||||
'node/no-unpublished-require': 'off',
|
||||
'mocha/max-top-level-suites': 'off',
|
||||
},
|
||||
|
||||
overrides: [{
|
||||
|
@ -2,6 +2,7 @@ import assert from 'assert'
|
||||
import { ETH } from '../constants/common'
|
||||
import * as utils from './conversions.util'
|
||||
|
||||
describe('conversion utils', function () {
|
||||
describe('getWeiHexFromDecimalValue', function () {
|
||||
it('should correctly convert 0 in ETH', function () {
|
||||
const weiValue = utils.getWeiHexFromDecimalValue({
|
||||
@ -39,3 +40,4 @@ describe('decETHToDecWEI', function () {
|
||||
assert.equal(weiValue, '1000000000000000000')
|
||||
})
|
||||
})
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user