Installation
Bigtest is a free, Open Source testing platform built from scratch for the modern age — with no traces of Selenium, Playwright, or earlier tools.
After following along with these guides, you will be up and running with some new user interface tests.
The Bigtest runner and its documentation are in the alpha phase. We welcome any feedback or questions! Please feel free to reach out to us in the Discord chat.
#
Prerequisites*If you would like to see Bigtest in action right away or in an environment separate from your project, you can install our sample app that was originally created to demonstrate interactors in various testing frameworks. The sample app will have the Bigtest platform and its configurations all ready to go. You can install the sample app by running the command npx bigtest-sample
in your terminal and skip the installation step below.
#
InstallationThe bigtest
package includes everything you need to get started. Go ahead and install Bigtest to your project:
- NPM
- Yarn
npm install bigtest --save-dev
yarn add bigtest --dev
Once that's finished installing, you can run the following command to generate the essential files:
- NPM
- Yarn
npx bigtest init
yarn bigtest init
You will know that your installation is successful if this command generates the bigtest.json
file.
Continue on to the next article to learn how to use this file and write your first test!