Skip to content

Commit e960e5d

Browse files
committed
chore: upgrade to matt plugin 0.1.0
1 parent c3b9d6c commit e960e5d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

examples/v4/plugins/test/matt.consumer.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const { expect } = chai;
3232
.uponReceiving('an HTTP request to /matt')
3333
.usingPlugin({
3434
plugin: 'matt',
35-
version: '0.1.0',
35+
version: '0.1.1',
3636
})
3737
.withRequest('POST', '/matt', (builder) => {
3838
builder.pluginContents('application/matt', mattRequest);
@@ -75,7 +75,7 @@ const { expect } = chai;
7575
.addSynchronousInteraction('a MATT message')
7676
.usingPlugin({
7777
plugin: 'matt',
78-
version: '0.1.0',
78+
version: '0.1.1',
7979
})
8080
.withPluginContents(mattMessage, 'application/matt')
8181
.startTransport('matt', HOST)

scripts/install-plugins.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ if [ ! -f ~/.pact/bin/pact-plugin-cli ]; then
5252
chmod +x ~/.pact/bin/pact-plugin-cli
5353
fi
5454

55-
if [ ! -d ~/.pact/plugins/matt-0.1.0 ]; then
55+
if [ ! -d ~/.pact/plugins/matt-0.1.1 ]; then
5656
echo "--- 🐿 Installing MATT plugin"
57-
~/.pact/bin/pact-plugin-cli install https://github.com/you54f/pact-matt-plugin/releases/tag/v0.1.0
57+
~/.pact/bin/pact-plugin-cli install https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.1.1
5858
fi

src/pact.integration.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe('V4 Pact', () => {
8383
.uponReceiving('an HTTP request to /matt')
8484
.usingPlugin({
8585
plugin: 'matt',
86-
version: '0.1.0',
86+
version: '0.1.1',
8787
})
8888
.withRequest('POST', '/matt', (builder) => {
8989
builder.pluginContents('application/matt', mattRequest);
@@ -144,7 +144,7 @@ describe('V4 Pact', () => {
144144
.addSynchronousInteraction('a MATT message')
145145
.usingPlugin({
146146
plugin: 'matt',
147-
version: '0.1.0',
147+
version: '0.1.1',
148148
})
149149
.withPluginContents(mattMessage, 'application/matt')
150150
.startTransport('matt', HOST)

0 commit comments

Comments
 (0)