Skip to content

Commit a12f7ef

Browse files
authored
chore: rename to example-bi-directional-consumer-playwright-js
1 parent ec3f7e9 commit a12f7ef

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
VERSION: ${{ github.sha }}
1212
GIT_REF: ${{ github.ref }}
1313
PACT_PROVIDER: pactflow-example-bi-directional-provider-postman
14-
PACTICIPANT: pactflow-example-bi-directional-consumer-playwright
14+
PACTICIPANT: pactflow-example-bi-directional-consumer-playwright-js
1515

1616
jobs:
1717
test:

.github/workflows/test_pact_cli_tools_cross_os.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
env:
6767
PACT_TOOL: ${{ matrix.pact_tool }}
6868
BRANCH: ${{ needs.setup.outputs.BRANCH }}
69-
PACTICIPANT: "pactflow-example-bi-directional-consumer-playwright-${{ matrix.os }}-${{ matrix.node-version }}-${{ matrix.pact_tool }}"
69+
PACTICIPANT: "pactflow-example-bi-directional-consumer-playwright-js-${{ matrix.os }}-${{ matrix.node-version }}-${{ matrix.pact_tool }}"
7070
PACT_PROVIDER: ${{ matrix.pact_provider }}
7171
PACT_CLI_VERSION: ${{ needs.setup.outputs.PACT_CLI_VERSION}}
7272
PACT_TOOL_USER_CHOICE: ${{ needs.setup.outputs.PACT_TOOL }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Default to the read only token - the read/write token will be present on Travis CI.
66
# It's set as a secure environment variable in the .travis.yml file
77
GITHUB_ORG="pactflow"
8-
PACTICIPANT ?= "pactflow-example-bi-directional-consumer-playwright"
8+
PACTICIPANT ?= "pactflow-example-bi-directional-consumer-playwright-js"
99
GITHUB_WEBHOOK_UUID := "04510dc1-7f0a-4ed2-997d-114bfa86f8ad"
1010
PACT_CHANGED_WEBHOOK_UUID := "8e49caaa-0498-4cc1-9368-325de0812c8a"
1111
VERSION?=$(shell npx -y absolute-version)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Example NodeJS/React Consumer - playwright (BYO Adapter)
22

3-
[![Build](https://github.com/pactflow/example-bi-directional-consumer-playwright/actions/workflows/build.yml/badge.svg)](https://github.com/pactflow/example-bi-directional-consumer-playwright/actions/workflows/build.yml)
3+
[![Build](https://github.com/pactflow/example-bi-directional-consumer-playwright-js/actions/workflows/build.yml/badge.svg)](https://github.com/pactflow/example-bi-directional-consumer-playwright-js/actions/workflows/build.yml)
44

5-
[![Can I deploy Status](https://testdemo.pactflow.io/pacticipants/pactflow-example-bi-directional-consumer-playwright/branches/main/latest-version/can-i-deploy/to-environment/production/badge)](https://testdemo.pactflow.io/pacticipants/pactflow-example-bi-directional-consumer-playwright/branches/main/latest-version/can-i-deploy/to-environment/production/badge)
5+
[![Can I deploy Status](https://testdemo.pactflow.io/pacticipants/pactflow-example-bi-directional-consumer-playwright-js/branches/main/latest-version/can-i-deploy/to-environment/production/badge)](https://testdemo.pactflow.io/pacticipants/pactflow-example-bi-directional-consumer-playwright-js/branches/main/latest-version/can-i-deploy/to-environment/production/badge)
66

77
- [Example NodeJS/React Consumer - playwright (BYO Adapter)](#example-nodejsreact-consumer---playwright-byo-adapter)
88
- [Overview of Example](#overview-of-example)
@@ -155,7 +155,7 @@ await page.route(productApiPath + '/products?id=2', async (route) => {
155155
}
156156
}
157157
route.fulfill(response)
158-
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright'
158+
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright-js'
159159
const provider = process.env.PACT_PROVIDER || 'pactflow-example-bi-directional-provider-dredd'
160160
await transformPlaywrightMatchToPact(route, { pacticipant, provider })
161161
return

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "example-bi-directional-consumer-playwright",
2+
"name": "example-bi-directional-consumer-playwright-js",
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {

test/product.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test('product page', async ({ page }) => {
1616
'Content-Type': 'application/json'
1717
}
1818
})
19-
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright'
19+
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright-js'
2020
const provider = process.env.PACT_PROVIDER || 'pactflow-example-bi-directional-provider-dredd'
2121
await transformPlaywrightMatchToPact(route, { pacticipant, provider })
2222
return

test/productByQuery.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ test('products page with query', async ({ page }) => {
1717
}
1818
}
1919
route.fulfill(response)
20-
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright'
20+
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright-js'
2121
const provider = process.env.PACT_PROVIDER || 'pactflow-example-bi-directional-provider-dredd'
2222
await transformPlaywrightMatchToPact(route, { pacticipant, provider })
2323
return

test/products.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test('products page', async ({ page }) => {
1616
'Content-Type': 'application/json'
1717
}
1818
})
19-
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright'
19+
const pacticipant = 'pactflow-example-bi-directional-consumer-playwright-js'
2020
const provider = process.env.PACT_PROVIDER || 'pactflow-example-bi-directional-provider-dredd'
2121
await transformPlaywrightMatchToPact(route, { pacticipant, provider })
2222
return

0 commit comments

Comments
 (0)