Skip to content

Commit 1f69723

Browse files
committed
fix: update standalone to 1.88.91-rc4
1 parent e25696e commit 1f69723

File tree

2 files changed

+2
-59
lines changed

2 files changed

+2
-59
lines changed

src/pact-standalone.spec.ts

-49
Original file line numberDiff line numberDiff line change
@@ -90,55 +90,6 @@ describe('Pact Standalone', function() {
9090
});
9191
});
9292

93-
describe('Linux ia32', () => {
94-
before(() => install('linux', 'ia32'));
95-
96-
beforeEach(() => (pact = standalone('linux', 'ia32')));
97-
98-
it('broker relative path', () => {
99-
expect(fs.existsSync(path.resolve(basePath, pact.brokerPath))).to.be
100-
.true;
101-
});
102-
103-
it('broker full path', () => {
104-
expect(fs.existsSync(pact.brokerFullPath)).to.be.true;
105-
});
106-
107-
it('mock service relative path', () => {
108-
expect(fs.existsSync(path.resolve(basePath, pact.mockServicePath))).to
109-
.be.true;
110-
});
111-
112-
it('mock service full path', () => {
113-
expect(fs.existsSync(pact.mockServiceFullPath)).to.be.true;
114-
});
115-
116-
it('stub relative path', () => {
117-
expect(fs.existsSync(path.resolve(basePath, pact.stubPath))).to.be.true;
118-
});
119-
120-
it('stub full path', () => {
121-
expect(fs.existsSync(pact.stubFullPath)).to.be.true;
122-
});
123-
124-
it('provider verifier relative path', () => {
125-
expect(fs.existsSync(path.resolve(basePath, pact.verifierPath))).to.be
126-
.true;
127-
});
128-
129-
it('provider verifier full path', () => {
130-
expect(fs.existsSync(pact.verifierFullPath)).to.be.true;
131-
});
132-
133-
it('pact relative path', () => {
134-
expect(fs.existsSync(path.resolve(basePath, pact.pactPath))).to.be.true;
135-
});
136-
137-
it('pact full path', () => {
138-
expect(fs.existsSync(pact.pactFullPath)).to.be.true;
139-
});
140-
});
141-
14293
describe('Linux X64', () => {
14394
before(() => install('linux', 'x64'));
14495

standalone/install.ts

+2-10
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (environmentProxy) {
2525
}
2626

2727
// Get latest version from https://github.com/pact-foundation/pact-ruby-standalone/releases
28-
export const PACT_STANDALONE_VERSION = '1.88.83';
28+
export const PACT_STANDALONE_VERSION = '1.88.91-rc5';
2929
const PACT_DEFAULT_LOCATION = `https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v${PACT_STANDALONE_VERSION}/`;
3030
const HTTP_REGEX = /^http(s?):\/\//;
3131

@@ -106,15 +106,7 @@ export function createConfig(location: string = process.cwd()): Config {
106106
binaryChecksum: `pact-${PACT_STANDALONE_VERSION}-linux-x86_64.tar.gz${CHECKSUM_SUFFIX}`,
107107
downloadLocation: PACT_BINARY_LOCATION,
108108
folderName: `linux-x64-${PACT_STANDALONE_VERSION}`,
109-
},
110-
{
111-
platform: 'linux',
112-
arch: 'ia32',
113-
binary: `pact-${PACT_STANDALONE_VERSION}-linux-x86.tar.gz`,
114-
binaryChecksum: `pact-${PACT_STANDALONE_VERSION}-linux-x86.tar.gz${CHECKSUM_SUFFIX}`,
115-
downloadLocation: PACT_BINARY_LOCATION,
116-
folderName: `linux-ia32-${PACT_STANDALONE_VERSION}`,
117-
},
109+
}
118110
],
119111
};
120112
}

0 commit comments

Comments
 (0)