Skip to content

Commit

Permalink
chore: bump version of matt plugin for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Dec 22, 2022
1 parent 3288657 commit 646f376
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/v4/plugins/test/matt.consumer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Plugins - Matt Protocol', () => {
.uponReceiving('an HTTP request to /matt')
.usingPlugin({
plugin: 'matt',
version: '0.0.5',
version: '0.0.7',
})
.withRequest('POST', '/matt', (builder) => {
builder.pluginContents('application/matt', mattRequest);
Expand Down Expand Up @@ -73,7 +73,7 @@ describe('Plugins - Matt Protocol', () => {
.addSynchronousInteraction('a MATT message')
.usingPlugin({
plugin: 'matt',
version: '0.0.5',
version: '0.0.7',
})
.withPluginContents(mattMessage, 'application/matt')
.startTransport('matt', HOST)
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if [ ! -f ~/.pact/bin/pact-plugin-cli ]; then
chmod +x ~/.pact/bin/pact-plugin-cli
fi

if [ ! -d ~/.pact/plugins/matt-0.0.5 ]; then
if [ ! -d ~/.pact/plugins/matt-0.0.7 ]; then
echo "--- 🐿 Installing MATT plugin"
~/.pact/bin/pact-plugin-cli install https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.0.5
~/.pact/bin/pact-plugin-cli install https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.0.7
fi

0 comments on commit 646f376

Please sign in to comment.