Skip to content

Commit

Permalink
Change lockdown execution order
Browse files Browse the repository at this point in the history
  • Loading branch information
david0xd committed Feb 22, 2023
1 parent a283f20 commit b9ded0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/snaps-execution-environments/nyc.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module.exports = {
'check-coverage': true,
branches: 89.28,
lines: 96.13,
lines: 96.14,
functions: 96.66,
statements: 96.13,
statements: 96.14,
};
2 changes: 1 addition & 1 deletion packages/snaps-execution-environments/src/iframe/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { executeLockdownEvents } from '../common/lockdown/lockdown-events';
import { executeLockdownMore } from '../common/lockdown/lockdown-more';
import { IFrameSnapExecutor } from './IFrameSnapExecutor';

executeLockdownEvents();
executeLockdown();
executeLockdownMore();
executeLockdownEvents();

IFrameSnapExecutor.initialize();

0 comments on commit b9ded0e

Please sign in to comment.