Skip to content

Commit 98ef6de

Browse files
authored
Sync flower-field tests (#2804)
1 parent bf23b00 commit 98ef6de

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

exercises/practice/flower-field/.meta/tests.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,6 @@ description = "cross"
4444

4545
[dd9d4ca8-9e68-4f78-a677-a2a70fd7a7b8]
4646
description = "large garden"
47+
48+
[6e4ac13a-3e43-4728-a2e3-3551d4b1a996]
49+
description = "multiple adjacent flowers"

exercises/practice/flower-field/flower-field.spec.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,10 @@ describe('Flower Field', () => {
7676
];
7777
expect(annotate(input)).toEqual(expected);
7878
});
79+
80+
xtest('multiple adjacent flowers', () => {
81+
const input = [' ** '];
82+
const expected = ['1**1'];
83+
expect(annotate(input)).toEqual(expected);
84+
});
7985
});

0 commit comments

Comments
 (0)