Skip to content

Commit

Permalink
fix: skip bitcoin contract tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fara Woolf authored and fbwoolf committed Nov 20, 2023
1 parent a6588dc commit 83c4d04
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ test.describe('Bitcoin Contract Request Test', () => {
await rejectButton.click();
}

test('that the bitcoin contract offer is properly displayed', async ({ page, context }) => {
test.skip('that the bitcoin contract offer is properly displayed', async ({ page, context }) => {
const expectedOfferorName = 'DLC.Link';
const expectedLockAmount = '0.0001 BTC';
const expectedExpirationDate = '10/17/2023';

initiateOfferRequest(page)(requestParams);
await initiateOfferRequest(page)(requestParams);

const popup = await context.waitForEvent('page');

Expand All @@ -82,7 +82,7 @@ test.describe('Bitcoin Contract Request Test', () => {
await popup.close();
});

test('that user can reject a bitcoin contract offer', async ({ page, context }) => {
test.skip('that user can reject a bitcoin contract offer', async ({ page, context }) => {
const [result] = await Promise.all([
initiateOfferRequest(page)(requestParams),
clickReject(context),
Expand All @@ -99,11 +99,11 @@ test.describe('Bitcoin Contract Request Test', () => {
});
});

test(`that user can't accept a bitcoin contract offer without sufficient bitcoin'`, async ({
test.skip(`that user can't accept a bitcoin contract offer without sufficient bitcoin'`, async ({
page,
context,
}) => {
initiateOfferRequest(page)(requestParams);
await initiateOfferRequest(page)(requestParams);

const popup = await context.waitForEvent('page');
await popup.waitForTimeout(500);
Expand Down

0 comments on commit 83c4d04

Please sign in to comment.