logo
JavaScript Testing In And Around WordPress
    • Introduction
    • Types of Tests
      • Unit Tests
      • Integration Tests
      • Acceptance Tests
    • Testing React Apps
      • Questions and Scopes
      • Unit Testing React Apps
      • Integration Testing React Apps
      • Writing Test Driven React Components
    • Testing WordPress Blocks
      • Creating A WordPress Plugin Using WordPress Scripts
      • Structuring WordRress Plugin For Testablity
      • Wrting Tests For WordPress Blocks
      • Test-Driven Gutenberg Blocks
    • Next Steps
    • About

  • Josh
  • Saturday Drive

  • Star
    • Introduction
    • Types of Tests
      • Unit Tests
      • Integration Tests
      • Acceptance Tests
    • Testing React Apps
      • Questions and Scopes
      • Unit Testing React Apps
      • Integration Testing React Apps
      • Writing Test Driven React Components
    • Testing WordPress Blocks
      • Creating A WordPress Plugin Using WordPress Scripts
      • Structuring WordRress Plugin For Testablity
      • Wrting Tests For WordPress Blocks
      • Test-Driven Gutenberg Blocks
    • Next Steps
    • About

  • Josh
  • Saturday Drive

Acceptance Tests

Github logo Edit on GitHub

Does the whole system work together?

For web apps, we can think of acceptance tests as browser tests. For example, Cypress.io or the WordPres end to end use headless Chrome to navigate a web site, click things and make sure they work as expected.

Previous
Integration Tests
Next
Testing React Apps