Skip to content
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.

Commit

Permalink
Makes building files unnecessary to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga committed Jan 22, 2020
1 parent e0a66d7 commit 47c3a87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"tsc": "ethereumjs-config-tsc",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"test": "npm run build && ts-node node_modules/tape/bin/tape ./test/index.ts"
"test": "ts-node node_modules/tape/bin/tape ./test/index.ts"
},
"husky": {
"hooks": {
Expand Down
2 changes: 1 addition & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as async from 'async'
import Common from 'ethereumjs-common'
import { toBuffer, bufferToInt } from 'ethereumjs-util'
import * as test from 'tape'
import Blockchain, { Block } from '../dist'
import Blockchain, { Block } from '../src'
import { generateBlockchain, generateBlocks, isConsecutive, createTestDB } from './util'

import BN = require('bn.js')
Expand Down
2 changes: 1 addition & 1 deletion test/util.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { rlp, toBuffer, bufferToInt } from 'ethereumjs-util'
import BN = require('bn.js')
import Blockchain, { Block } from '../dist'
import Blockchain, { Block } from '../src'

const util = require('util')
const Block = require('ethereumjs-block')
Expand Down

0 comments on commit 47c3a87

Please sign in to comment.