Mark Lawrence
Mark Lawrence
Just to add, I could change my code to: ``` await global.provider.addInteraction({ state: 'records exist', uponReceiving: 'a GET for records', withRequest: { method: 'GET', path: '/api/inventory/summary' }, willRespondWith: { status:...
The `{ min: 3 }` was a mess up on my part, I'm having to sanitise what data I'm showing in this bug report due to the nature of my...
@mefellows I've mentioned what I'm trying to achieve in https://github.com/pact-foundation/pact-node/pull/203 It is beyond what is the minimum requirement for a contract test....I'm essentially using Pact as a fully mocked replacement...
I think the changes to resolve this has broken devcontainers using `ghcr.io/devcontainers/features/node:1`. `node` & `npm` are not found after building the container I have had to specify `ghcr.io/devcontainers/features/common-utils:2.4.5` to get...
@prathameshzarkar9 ```json { "name": "cics-security-sdv-samples Container", "build": { "dockerfile": "Dockerfile" }, "customizations": { "vscode": { "settings": { "vsintellicode.java.completionsEnabled": false, "vsintellicode.python.completionsEnabled": false, "vsintellicode.sql.completionsEnabled": false, "vsintellicode.typescript.completionsEnabled": false, "vsintellicode.modify.editor.suggestSelection": "disabled", "errorLens.onSave": true, "errorLens.messageEnabled":...
@prathameshzarkar9 this is what's in the `initialise_dev_container.sh` file: ```shell # Install approval bot dependencies npm install # Install docs dependencies cd docs npm install cd .. # Install Ansible tooling...
@prathameshzarkar9 sure.... ``` FROM mcr.microsoft.com/devcontainers/base:jammy RUN apt update ENV LOG_LEVEL="trace" EXPOSE 3000 EXPOSE 3001 COPY initialise_dev_container.sh /post_script/initialise_dev_container.sh RUN mkdir -p /workspaces; \ chmod 755 /post_script/initialise_dev_container.sh WORKDIR /workspaces ```