Skip to content

Commit 78ea14b

Browse files
committed
fix playwright reorder issue
Signed-off-by: Roman Dmytrenko <[email protected]>
1 parent 332fa5f commit 78ea14b

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

ui/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
},
6868
"devDependencies": {
6969
"@babel/preset-typescript": "^7.27.1",
70-
"@playwright/test": "^1.55.0",
70+
"@playwright/test": "^1.55.1",
7171
"@tailwindcss/forms": "^0.5.10",
7272
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
7373
"@types/jest": "^29.5.14",

ui/src/app/flags/rollouts/Rollouts.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,11 @@ export default function Rollouts({ flag, rollouts }: RolloutsProps) {
221221
items={rollouts.map((rollout) => rollout.id!)}
222222
strategy={verticalListSortingStrategy}
223223
>
224-
<ul role="list" className="flex-col space-y-6 p-2 md:flex">
224+
<ul
225+
role="list"
226+
data-testid="rollouts"
227+
className="flex-col space-y-6 p-2 md:flex"
228+
>
225229
{rollouts &&
226230
rollouts.map((rollout, index) => (
227231
<SortableRollout

ui/src/app/flags/rules/Rules.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ export default function Rules({ flag, variants, rules }: RulesProps) {
291291
>
292292
<ul
293293
role="list"
294+
data-testid="rules"
294295
className="flex-col space-y-6 p-2 md:flex"
295296
>
296297
{rules &&

0 commit comments

Comments
 (0)