diff --git a/README.md b/README.md
index 0611666e..0de6b0a1 100644
--- a/README.md
+++ b/README.md
@@ -163,10 +163,10 @@ git submodule init
git submodule update
```
-2. Bring up the stack using the `test` profile:
+2. Pull the latest images and bring up the stack using the `test` profile:
```bash
-docker compose --profile test up -d
+docker compose --profile test pull && docker compose --profile test up -d
```
_NOTE: Make sure your .env file in the root directory doesn't contain any of the environment variables used in the docker compose file as it will conflict with the configuration, since docker compose will try to use .env by default._
diff --git a/cypress/component/ResultCard.cy.tsx b/cypress/component/ResultCard.cy.tsx
index 38bdc84e..c583c4a2 100644
--- a/cypress/component/ResultCard.cy.tsx
+++ b/cypress/component/ResultCard.cy.tsx
@@ -71,4 +71,22 @@ describe('ResultCard', () => {
cy.get('[data-cy="card-some uuid-checkbox"] input').check();
cy.get('@onCheckboxChangeSpy').should('have.been.calledWith', props.datasetUUID);
});
+ it('Displays a disabled button with "No pipelines" text when no pipelines are available', () => {
+ cy.mount(
+