Skip to content

Commit

Permalink
only test this one
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-aztec committed Oct 5, 2023
1 parent 50588c6 commit 4c7db71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yarn-project/end-to-end/src/canary/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const PORT = 3000;

const { PXE_URL } = process.env;

const conditionalDescribe = () => (PXE_URL ? describe : describe.skip);
const conditionalDescribe = () => describe; // PXE_URL ? describe : describe.skip);
const privKey = AztecJs.GrumpkinScalar.random();

export const browserTestSuite = (setup: () => Server, pageLogger: AztecJs.DebugLogger) =>
Expand Down Expand Up @@ -112,8 +112,8 @@ export const browserTestSuite = (setup: () => Server, pageLogger: AztecJs.DebugL
await deployTokenContract();
}, 60_000);

it('Can access CompleteAddress class in browser', async () => {
const result = await page.evaluate(async () => {
it.only('Can access CompleteAddress class in browser', async () => {
const result = await page.evaluate(() => {
const completeAddress: AztecJs.CompleteAddress = AztecJs.CompleteAddress.fromString(
'0x115f123bbc6cc6af9890055821cfba23a7c4e8832377a32ccb719a1ba3a86483',
);
Expand Down

0 comments on commit 4c7db71

Please sign in to comment.