Skip to content

Commit

Permalink
test(ses): move smoke test calls below
Browse files Browse the repository at this point in the history
  • Loading branch information
leotm committed Aug 14, 2024
1 parent 0b35178 commit a10c965
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ses/test/hermes-smoke.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ const testLockdown = () => {
lockdown();
};

testLockdown();

/**
* TODO: Test creating a new Compartment.
*/
Expand All @@ -20,8 +18,6 @@ const testCompartment = () => {
const c = new Compartment();
};

// testCompartment();

/**
* TODO: Test Compartment import hook and resolve hook.
*/
Expand Down Expand Up @@ -50,4 +46,8 @@ async function testCompartmentHooks() {
assert(module);
}

testLockdown();

// testCompartment();

// testCompartmentHooks();

0 comments on commit a10c965

Please sign in to comment.