Fix linting on bisq spec
This commit is contained in:
parent
d87fd95523
commit
5d976eff75
@ -1,5 +1,5 @@
|
|||||||
describe('Bisq', () => {
|
describe('Bisq', () => {
|
||||||
const baseModule = Cypress.env("BASE_MODULE");
|
const baseModule = Cypress.env('BASE_MODULE');
|
||||||
const basePath = '';
|
const basePath = '';
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
@ -20,7 +20,7 @@ describe('Bisq', () => {
|
|||||||
cy.waitForSkeletonGone();
|
cy.waitForSkeletonGone();
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("transactions", () => {
|
describe('transactions', () => {
|
||||||
it('loads the transactions screen', () => {
|
it('loads the transactions screen', () => {
|
||||||
cy.visit(`${basePath}`);
|
cy.visit(`${basePath}`);
|
||||||
cy.waitForSkeletonGone();
|
cy.waitForSkeletonGone();
|
||||||
@ -30,9 +30,9 @@ describe('Bisq', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const filters = [
|
const filters = [
|
||||||
"Asset listing fee", "Blind vote", "Compensation request",
|
'Asset listing fee', 'Blind vote', 'Compensation request',
|
||||||
"Genesis", "Irregular", "Lockup", "Pay trade fee", "Proof of burn",
|
'Genesis', 'Irregular', 'Lockup', 'Pay trade fee', 'Proof of burn',
|
||||||
"Proposal", "Reimbursement request", "Transfer BSQ", "Unlock", "Vote reveal"
|
'Proposal', 'Reimbursement request', 'Transfer BSQ', 'Unlock', 'Vote reveal'
|
||||||
];
|
];
|
||||||
filters.forEach((filter) => {
|
filters.forEach((filter) => {
|
||||||
it.only(`filters the transaction screen by ${filter}`, () => {
|
it.only(`filters the transaction screen by ${filter}`, () => {
|
||||||
@ -49,7 +49,7 @@ describe('Bisq', () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it("filters using multiple criteria", () => {
|
it('filters using multiple criteria', () => {
|
||||||
const filters = ['Proposal', 'Lockup', 'Unlock'];
|
const filters = ['Proposal', 'Lockup', 'Unlock'];
|
||||||
cy.visit(`${basePath}/transactions`);
|
cy.visit(`${basePath}/transactions`);
|
||||||
cy.waitForSkeletonGone();
|
cy.waitForSkeletonGone();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user