Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change lockdown execution order
Browse files Browse the repository at this point in the history
david0xd committed Feb 22, 2023
1 parent f299b01 commit dd92974
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
@@ -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
@@ -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 dd92974

Please sign in to comment.