Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added browser tests after deploy #1312

Merged
merged 4 commits into from
Feb 21, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .circleci/trigger_browser_tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
# Sends a POST request to Travis that triggers browser tests from here
# https://github.com/quarckster/widgetastic.patternfly4/tree/master/testing

curl -s -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Travis-API-Version: 3" \
-H "Authorization: token $QUARCKSTER_TOKEN" \
-d '{"request": {"branch": "master"}}' \
https://api.travis-ci.org/repo/quarckster%2Fwidgetastic.patternfly4/requests
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@ jobs:
- cp -r packages/patternfly-4/react-docs/public/assets .public/assets
- cp -r .out .public/patternfly-3
- yarn run surge --project .public --domain patternfly-react.surge.sh
- .circleci/trigger_browser_tests.sh
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
[![Build Status](https://travis-ci.org/patternfly/patternfly-react.svg?branch=master)](https://travis-ci.org/patternfly/patternfly-react)
[![npm version](https://badge.fury.io/js/patternfly-react.svg)](https://badge.fury.io/js/patternfly-react)
[![Coverage Status](https://coveralls.io/repos/github/patternfly/patternfly-react/badge.svg?branch=master)](https://coveralls.io/github/patternfly/patternfly-react?branch=master)
[![Selenium Tests](https://travis-ci.org/quarckster/widgetastic.patternfly4.svg?branch=master)](https://travis-ci.org/quarckster/widgetastic.patternfly4)

This project will provide a set of React UI components for the [PatternFly project](https://patternfly.org).

Expand Down