Skip to content

synpress-io/synpress-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

synpress examples

This repository contains different examples of usage for synpress which is e2e testing framework for web3 dapps.

For more information about the framework, please refer to the synpress repository.

🔥 Synpress works out-of-the-box with other frameworks! There is no need to use it directly.

Check examples below to see how to use it.

Supported frameworks

Supported wallets

Available examples

  • Synpress => examples of how to use synpress directly.
    • basic => example setup of Synpress using shared state meaning that each test is run on same instance of tested website. Metamask extension state is also shared all the time.
    • with-docker => example setup of Synpress using shared state meaning that each test is run on same instance of tested website. Metamask extension state is also shared all the time. It has additional docker integration with many benefits like recording of videos, VNC, noVNC and ngrok.
  • Playwright => examples of how to use synpress with Playwright.
    • isolated-state => example setup of Playwright with synpress using isolated state meaning that each test is run in a separate browser context with fresh instance of metamask extension. Test isolation is preferred way of running tests, but it takes more time for setting up metamask extension before each test.
    • shared-state => example setup of Playwright with synpress using shared state meaning that each test is run in same browser context and share same instance of metamask extension.
    • eslint => example setup of Playwright with synpress and eslint using isolated state.
  • Cypress => examples of how to use synpress with Cypress.
    • isolated-state => example setup of Cypress with synpress using isolated state meaning that each test is run on fresh instance of tested website, but in same browser (works differently than Playwright which uses new browser context). Metamask extension state is shared all the time. Test isolation is preferred way of running tests.
    • shared-state => example setup of Cypress with synpress using shared state meaning that each test is run on same instance of tested website. Metamask extension state is also shared all the time.