Skip to content

Commit

Permalink
♻️ Changes done after code review
Browse files Browse the repository at this point in the history
  • Loading branch information
Osvaldo Vega committed Nov 15, 2018
1 parent 6c3c05e commit adb53a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 51 deletions.
3 changes: 1 addition & 2 deletions karma.conf.js
Expand Up @@ -75,8 +75,7 @@ module.exports = function (config) {
'src/utils/rawTransactionWrapper.js',
'src/utils/to.js',
'src/components/newsFeed/index.js', // This component doesn't meet the setted tresholds for mocha but in jest
'src/components/dashboard/currencyGraph.js', // This component should be fixed later, right now the test is being skip (canvas issue)
'test/integration/wallet.js', // integration wallet throw random error that should be check it
'src/components/dashboard/currencyGraph.js', // This should be unskipped in issue #1499
'src/components/passphraseCreation/index.js',
],
overrides: {
Expand Down
49 changes: 0 additions & 49 deletions src/components/newsFeed/index.test.js

This file was deleted.

2 changes: 2 additions & 0 deletions test/integration/wallet.test.js
Expand Up @@ -260,6 +260,7 @@ describe('@integration: Wallet', () => {
step(`Then I should see text ${successMessage} in "result box message" element`, () => helper.haveTextOf('.result-box-message', successMessage));
});

// This should be unskipped in issue #1500
describe.skip('Scenario: should allow to send LSK from unlocked account with second passphrase', () => {
const { secondPassphrase } = accounts['second passphrase account'];
step('Given I\'m on "wallet" as "second passphrase account"', () => setupStep('second passphrase account'));
Expand Down Expand Up @@ -391,6 +392,7 @@ describe('@integration: Wallet', () => {
step('Then I should be redirected to transactoinDetails step', () => helper.checkRedirectionToDetails('123456'));
});

// This should be unskipped in issue #1500
describe.skip('Scenario: should allow to filter transactions', () => {
step('Given I\'m on "wallet" as "genesis" account', () => setupStep('genesis'));
step('Then the "All" filter should be selected by default', () => helper.checkSelectedFilter('all'));
Expand Down

0 comments on commit adb53a7

Please sign in to comment.