We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f899dbe commit 5483728Copy full SHA for 5483728
.github/workflows/e2e.yml
@@ -7,6 +7,8 @@ on:
7
pull_request:
8
branches:
9
- main
10
+ schedule:
11
+ - cron: '0 0 * * *'
12
13
jobs:
14
e2e:
test/e2e/specs/test.spec.js
@@ -1,15 +1,11 @@
1
/* eslint-disable ui-testing/no-disabled-tests */
2
describe('Wallet App Test Cases', () => {
3
context('Test commands', () => {
4
- it(`should setup Keplr account and connect with Agoric Chain`, () => {
5
- cy.setupWallet().then((setupFinished) => {
6
- 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;
});
15
0 commit comments