Skip to content

Commit 3df6b00

Browse files
committed
Update port for consumer
1 parent 5b07b20 commit 3df6b00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

consumer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
fetchOrders: () =>
55
new Promise((resolve, reject) => {
66
http
7-
.get('http://localhost:8080/orders', (resp) => {
7+
.get('http://localhost:8084/orders', (resp) => {
88
let data = ''
99

1010
resp.on('data', (chunk) => {

consumer.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { eachLike } = Matchers
55

66
describe('Pact with Order API', () => {
77
const provider = new Pact({
8-
port: 8080,
8+
port: 8084,
99
consumer: 'OrderClient',
1010
provider: 'OrderApi',
1111
})

0 commit comments

Comments
 (0)