Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 829 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 829 Bytes

e2e tests example in Wasp

Running it locally

  1. Make sure you have the latest version of Wasp installed by running curl -sSL https://get.wasp-lang.dev/installer.sh | sh in your terminal.
  2. Run wasp new <project-name> -t todo-ts to create a new app using this template.
  3. Run wasp db migrate-dev
  4. Run wasp start. This will install all dependencies and start the client and server for you :)
  5. Go to localhost:3000 in your browser (your NodeJS server will be running on port 3001)
  6. Install the Wasp extension for VSCode to get the best DX
  7. Check out the docs for more info on wasp's features and step-by-step guides

Running e2e tests

Check out the e2e-tests/README.md