Skip to content

Commit d36d161

Browse files
V48 (impl-only): Fix gate UX test and dockerignore
Align demonstration-only fixture path with brittle patterns. Allow containers/images/pipeliner/dist in monorepo dockerignore.
1 parent 1c3391e commit d36d161

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

.dockerignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
# Used by Pipeliner docker build (context = monorepo root).
2-
# Source: images/pipeliner/.dockerignore
2+
# Keep in sync with containers/images/pipeliner/.dockerignore.
33

4-
# Context is monorepo root when building with -f images/pipeliner/Dockerfile
4+
# Context is monorepo root when building with
5+
# -f containers/images/pipeliner/Dockerfile
56
.git
67
.github
78
**/.next
89
**/coverage
910
**/node_modules
1011
**/dist
11-
!images/pipeliner/dist
12-
!images/pipeliner/dist/**
12+
!containers/images/pipeliner/dist
13+
!containers/images/pipeliner/dist/**
1314
apps/uapi/.next
1415
apps/uapi/node_modules
1516
apps/uapi/storybook-static
1617
apps/uapi/tmp
1718
protocol-demonstration
1819
_legacy
1920
**/*.md
20-
!images/pipeliner/README.md
21+
!containers/images/pipeliner/README.md
2122
**/*.test.ts
2223
**/*.test.tsx
2324
**/__tests__

packages/btd/__tests__/interface-consumer-ux-regression-proof.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ describe('Interface consumer UX regression proof', () => {
149149
expect(() =>
150150
buildBtdInterfaceConsumerUxRegressionRow({
151151
...row,
152-
fixturePath: 'scripts/specifying/src/consumer-fixture.test.ts',
152+
// Must match BRITTLE_DEMONSTRATION_PATTERNS (protocol-demonstration|demo-only|mock-only).
153+
fixturePath: 'protocol-demonstration/consumer-fixture.test.ts',
153154
}),
154155
).toThrow(/demonstration-only/);
155156
});

0 commit comments

Comments
 (0)