mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Unify test suites
This commit is contained in:
parent
8b62a8bec2
commit
65d73d7bb4
13
README.md
13
README.md
@ -44,18 +44,11 @@ To enjoy the live-reloading that `gulp dev` offers while working on the `web3-pr
|
|||||||
|
|
||||||
### Running Tests
|
### Running Tests
|
||||||
|
|
||||||
Currently the tests are split between two suites (we recently merged the UI into the main plugin repository). There are two different test suites to be concerned with:
|
|
||||||
|
|
||||||
Plugin tests, `npm test`.
|
|
||||||
UI tests, `npm run testUi`.
|
|
||||||
|
|
||||||
You can also run both of these with continuously watching processes, via `npm run watch` and `npm run watchUi`.
|
|
||||||
|
|
||||||
#### UI Testing Particulars
|
|
||||||
|
|
||||||
Requires `mocha` installed. Run `npm install -g mocha`.
|
Requires `mocha` installed. Run `npm install -g mocha`.
|
||||||
|
|
||||||
You can either run the test suite once with `npm testUi`, or you can reload on file changes, by running `mocha watch ui/test/**/**`.
|
Then just run `npm test`.
|
||||||
|
|
||||||
|
You can also test with a continuously watching process, via `npm run watch`.
|
||||||
|
|
||||||
### Deploying the UI
|
### Deploying the UI
|
||||||
|
|
||||||
|
@ -5,11 +5,8 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "gulp dev",
|
"start": "gulp dev",
|
||||||
"test": "npm run testUi",
|
"test": "mocha --require test/helper.js --compilers js:babel-register --recursive",
|
||||||
"testPlugin": "mocha --require test/helper.js --compilers js:babel-register --recursive",
|
"watch": "mocha watch --compilers js:babel-register --recursive"
|
||||||
"watch": "mocha watch --compilers js:babel-register --recursive",
|
|
||||||
"testUi": "mocha ui/test/**/**/*test.js",
|
|
||||||
"watchUi": "mocha watch ui/test/**/*test.js"
|
|
||||||
},
|
},
|
||||||
"browserify": {
|
"browserify": {
|
||||||
"transform": [
|
"transform": [
|
||||||
|
@ -3,8 +3,8 @@ var assert = require('assert')
|
|||||||
var freeze = require('deep-freeze-strict')
|
var freeze = require('deep-freeze-strict')
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
var actions = require(path.join(__dirname, '..', '..', '..', 'app', 'actions.js'))
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
||||||
var reducers = require(path.join(__dirname, '..', '..', '..', 'app', 'reducers.js'))
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
||||||
|
|
||||||
describe ('config view actions', function() {
|
describe ('config view actions', function() {
|
||||||
|
|
@ -4,8 +4,8 @@ var freeze = require('deep-freeze-strict')
|
|||||||
var path = require('path')
|
var path = require('path')
|
||||||
var sinon = require('sinon')
|
var sinon = require('sinon')
|
||||||
|
|
||||||
var actions = require(path.join(__dirname, '..', '..', '..', 'app', 'actions.js'))
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
||||||
var reducers = require(path.join(__dirname, '..', '..', '..', 'app', 'reducers.js'))
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
||||||
|
|
||||||
describe('#recoverFromSeed(password, seed)', function() {
|
describe('#recoverFromSeed(password, seed)', function() {
|
||||||
|
|
@ -3,8 +3,8 @@ var assert = require('assert')
|
|||||||
var freeze = require('deep-freeze-strict')
|
var freeze = require('deep-freeze-strict')
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
var actions = require(path.join(__dirname, '..', '..', '..', 'app', 'actions.js'))
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
||||||
var reducers = require(path.join(__dirname, '..', '..', '..', 'app', 'reducers.js'))
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
||||||
|
|
||||||
describe('SET_SELECTED_ACCOUNT', function() {
|
describe('SET_SELECTED_ACCOUNT', function() {
|
||||||
|
|
@ -3,8 +3,8 @@ var assert = require('assert')
|
|||||||
var freeze = require('deep-freeze-strict')
|
var freeze = require('deep-freeze-strict')
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
var actions = require(path.join(__dirname, '..', '..', '..', 'app', 'actions.js'))
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
||||||
var reducers = require(path.join(__dirname, '..', '..', '..', 'app', 'reducers.js'))
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
||||||
|
|
||||||
describe('tx confirmation screen', function() {
|
describe('tx confirmation screen', function() {
|
||||||
var initialState, result
|
var initialState, result
|
@ -3,8 +3,8 @@ var assert = require('assert')
|
|||||||
var freeze = require('deep-freeze-strict')
|
var freeze = require('deep-freeze-strict')
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
var actions = require(path.join(__dirname, '..', '..', '..', 'app', 'actions.js'))
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
||||||
var reducers = require(path.join(__dirname, '..', '..', '..', 'app', 'reducers.js'))
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
||||||
|
|
||||||
describe('SHOW_INFO_PAGE', function() {
|
describe('SHOW_INFO_PAGE', function() {
|
||||||
|
|
@ -3,8 +3,8 @@ var assert = require('assert')
|
|||||||
var freeze = require('deep-freeze-strict')
|
var freeze = require('deep-freeze-strict')
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
var actions = require(path.join(__dirname, '..', '..', '..', 'app', 'actions.js'))
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
||||||
var reducers = require(path.join(__dirname, '..', '..', '..', 'app', 'reducers.js'))
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
||||||
|
|
||||||
describe('action DISPLAY_WARNING', function() {
|
describe('action DISPLAY_WARNING', function() {
|
||||||
|
|
@ -1,5 +1,4 @@
|
|||||||
var assert = require('assert')
|
var assert = require('assert')
|
||||||
var test = require('tape')
|
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
var wallet1 = require(path.join('..', 'lib', 'migrations', '001.json'))
|
var wallet1 = require(path.join('..', 'lib', 'migrations', '001.json'))
|
||||||
|
@ -3,7 +3,7 @@ var sinon = require('sinon')
|
|||||||
const ethUtil = require('ethereumjs-util')
|
const ethUtil = require('ethereumjs-util')
|
||||||
|
|
||||||
var path = require('path')
|
var path = require('path')
|
||||||
var util = require(path.join(__dirname, '..', '..', 'app', 'util.js'))
|
var util = require(path.join(__dirname, '..', '..', 'ui', 'app', 'util.js'))
|
||||||
|
|
||||||
describe('util', function() {
|
describe('util', function() {
|
||||||
var ethInWei = '1'
|
var ethInWei = '1'
|
@ -1,8 +0,0 @@
|
|||||||
if (typeof process === 'object') {
|
|
||||||
// Initialize node environment
|
|
||||||
global.expect = require('chai').expect
|
|
||||||
require('mocha-jsdom')()
|
|
||||||
} else {
|
|
||||||
window.expect = window.chai.expect
|
|
||||||
window.require = function () { /* noop */ }
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user