Skip to content

Commit

Permalink
Merge pull request #27 from multiversx/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
Miro Mărgineanu authored Nov 7, 2023
2 parents 3eb0d9a + 0e280f5 commit 944aa66
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 34 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/cypress-e2e.yml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/pre-merge-main-e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Cypress Tests
on:
pull_request:
branches: [main]
jobs:
cypress-run:
runs-on: ubuntu-latest
strategy:
fail-fast: false # https://github.com/cypress-io/github-action/issues/48
matrix:
containers: [1]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup yarn
run: npm install -g yarn
- run: npm config set '//npm.fontawesome.com/:_authToken' "${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}"
- run: yarn install
- run: yarn run prepare-pro-icons
- run: yarn run build-devnet
env:
CI: false
VITE_APP_MARKERS_API_URL: ${{ secrets.MARKERS_API_URL }}
VITE_APP_VERSION_URL: ${{ secrets.APP_VERSION_URL }}
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: 'us-east-1'
- name: Deploy to S3 bucket
run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET_INTEGRATION }} --delete
- name: No-cache index.html
run: aws s3 cp s3://${{ secrets.AWS_S3_BUCKET_INTEGRATION }}/index.html s3://${{ secrets.AWS_S3_BUCKET_INTEGRATION }}/index.html --metadata-directive REPLACE --cache-control max-age=0,no-cache,no-store,must-revalidate --content-type text/html --acl public-read
- name: Cypress run
uses: cypress-io/github-action@v4
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineConfig } from 'cypress';

export default defineConfig({
e2e: {
baseUrl: 'https://devnet-explorer.multiversx.com/',
baseUrl: 'https://integration-explorer.multiversx.com/',

setupNodeEvents(on, config) {
// implement node event listeners here
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/NFTs/NFTs.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('NFTs', () => {

it('should acces the nft details page', () => {
cy.viewport(1000, 3000);
cy.get('collectionLink1').click();
cy.getSelector('collectionLink1').click();
cy.getSelector('title').should(AssertionEnum.contain, 'Collection Details');
});
});

0 comments on commit 944aa66

Please sign in to comment.