This is the Sauce Labs Sample Application which is designed to be used from desktop web browsers
To set up the development environment directly on your host computer:
-
You’ll need Node.js installed (this needs to be NodeJS 14, not higher). If you don't have Node installed, we recommend installing NVM to assist managing multiple active Node.js versions.
-
Install OpenJDK 8 for running the end-to-end tests
-
Install Google Chrome for running the end-to-end tests
-
Clone the project somewhere on your computer
git clone git@github.com:<your-username>/sample-app-web.git
-
Install all dependencies by running this command from the root of the project
npm install
To set up error reporting with your Backtrace instance:
- Open
src/index.jsx
file and find theBacktraceClient.initialize
function call:BacktraceClient.initialize({ name: 'Swag Store', version: '3.0.0', url: 'https://submit.backtrace.io/UNIVERSE/TOKEN/json', userAttributes: () => ({ user: currentUser(), shoppingCart: ShoppingCart.getCartContents() }) })
- Replace
UNIVERSE
andTOKEN
inurl
with your universe and token.
For more details, see the docs about React integration with Backtrace.
-
Build the application with
npm run start
This will build the application, start Chrome and load the website on http://localhost:3000/
-
Click around - this is the app!
To enable additional insight in Backtrace, you can send built sourcemaps and sources to Backtrace:
-
Open
.backtracejsrc
file -
Replace
UNIVERSE
andTOKEN
inupload.url
with your universe and token. -
Build the application with
npm run build
-
Run
backtrace-js
npm run backtrace.sourcemaps
-
Host the app using e.g.
http-server
(sourcemaps integration won't work withnpm run start
)npx http-server -p 3000 ./build
-
New uploaded errors should display with sourcemaps attached!
For more details, see the docs about sourcemap integration with Backtrace.
This website uses components which can be tested with Storybook. To run Storybook execute the following command:
npm run storybook
This will open Storybook on http://localhost:6006/. More information about Storybook can be found here.
To run the application test suite (which uses Webdriver.io, Selenium, and Chrome) make sure the application is running on http://localhost:3000/ (see above steps)
npm run test.e2e.local
This will run the application test suite
Running on Sauce Labs uses Environment Variables to authenticate credentials. You can find a guide on how to do this here.
npm run test.e2e.sauce.us
to run tests on the Sauce Labs in the US Data Centernpm run test.e2e.sauce.eu
to run tests in the EU Data Center
Make sure you've added the
SCREENER_API_KEY
variable to your environment variables.
You can test the components with Screener Component testing by running the following commands
# This will test all components on Chrome only
npm run test.storybook.ci
# This will test all components on Chrome and Safari in mobile viewports
npm run test.storybook.mobile
# This will test all componentes on Chrome, Safari, Firefox and Safari
# with different desktop resolutions
npm run test.storybook.desktop
Each PR to master will also test the components with the test.storybook.ci
-command.
Make sure you've added the
SAUCE_USERNAME
andSAUCE_ACCESS_KEY
variables to your environment variables.
Merges to master need to manually be triggered in Actions > github pages release and will automatically deploy to: