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

ci: added daily scheduled run to e2e test workflow #147

Merged
merged 2 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
pull_request:
branches:
- main
schedule:
- cron: '0 0 * * *'

jobs:
e2e:
Expand Down
12 changes: 4 additions & 8 deletions test/e2e/specs/test.spec.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
/* eslint-disable ui-testing/no-disabled-tests */
describe('Wallet App Test Cases', () => {
context('Test commands', () => {
it(`should setup Keplr account and connect with Agoric Chain`, () => {
cy.setupWallet().then((setupFinished) => {
expect(setupFinished).to.be.true;
it(`should connect with Agoric Chain`, () => {
cy.visit('/');

cy.visit('/');

cy.acceptAccess().then((taskCompleted) => {
expect(taskCompleted).to.be.true;
});
cy.acceptAccess().then((taskCompleted) => {
expect(taskCompleted).to.be.true;
});
});

Expand Down
Loading