Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: skips failing tests #29778

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions test/e2e/flask/solana/send-flow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import NonEvmHomepage from '../../page-objects/pages/home/non-evm-homepage';
import { withSolanaAccountSnap } from './common-solana';

const commonSolanaAddress = 'GYP1hGem9HBkYKEWNUQUxEwfmu4hhjuujRgGnj5LrHna';
describe('Send flow', function (this: Suite) {
describe.skip('Send flow', function (this: Suite) {
it('with some field validation', async function () {
this.timeout(120000);
await withSolanaAccountSnap(
Expand Down Expand Up @@ -61,8 +61,8 @@ describe('Send flow', function (this: Suite) {
);
});
});
describe('Send full flow of USD', function (this: Suite) {
it.skip('with a positive balance account', async function () {
describe.skip('Send full flow of USD', function (this: Suite) {
it('with a positive balance account', async function () {
// skipped due tohttps://consensyssoftware.atlassian.net/browse/SOL-100
this.timeout(120000);
await withSolanaAccountSnap(
Expand Down Expand Up @@ -213,7 +213,7 @@ describe('Send full flow of USD', function (this: Suite) {
);
});
});
describe('Send full flow of SOL', function (this: Suite) {
describe.skip('Send full flow of SOL', function (this: Suite) {
it('with a positive balance account', async function () {
this.timeout(120000);
await withSolanaAccountSnap(
Expand Down Expand Up @@ -358,7 +358,7 @@ describe('Send full flow of SOL', function (this: Suite) {
);
});
});
describe('Send flow flow', function (this: Suite) {
describe.skip('Send flow flow', function (this: Suite) {
it('and Transaction fails', async function () {
this.timeout(120000); // there is a bug open for this big timeout https://consensyssoftware.atlassian.net/browse/SOL-90
await withSolanaAccountSnap(
Expand Down
Loading