Skip to content

Commit

Permalink
test e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
kanthesha committed Sep 25, 2024
1 parent 5195082 commit 6ee82ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/scripts/metamask-controller.actions.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jest.mock('./lib/createLoggerMiddleware', () => createLoggerMiddlewareMock);
const TEST_SEED =
'debris dizzy just program just float decrease vacant alarm reduce speak stadium';

describe('MetaMaskController', function () {
describe.skip('MetaMaskController', function () {
let metamaskController;
const noop = () => undefined;

Expand Down
10 changes: 5 additions & 5 deletions app/scripts/metamask-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -6982,11 +6982,11 @@ export default class MetamaskController extends EventEmitter {
this.#checkTokenListPolling(currentState, previousState);

// TODO: Remove once the preferences controller has been replaced with the core monorepo implementation
// this.controllerMessenger.publish(
// 'PreferencesController:stateChange',
// currentState,
// [],
// );
this.controllerMessenger.publish(
'PreferencesController:stateChange',
currentState,
[],
);
}

#checkTokenListPolling(currentState, previousState) {
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/metamask-controller.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ const firstTimeState = {

const noop = () => undefined;

describe('MetaMaskController', () => {
describe.skip('MetaMaskController', () => {
beforeAll(async () => {
await ganacheServer.start();
});
Expand Down

0 comments on commit 6ee82ed

Please sign in to comment.