Skip to content

Commit 6ba41bf

Browse files
devillclaude
andcommitted
Update select command fixture expected outputs to match relative paths
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 414e8a2 commit 6ba41bf

11 files changed

Lines changed: 26 additions & 26 deletions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[expression-pattern.received.ts 9:18-9:32] const area = ≫width * height≪;
2-
[expression-pattern.received.ts 10:23-10:37] const perimeter = ≫width + height≪;
3-
[expression-pattern.received.ts 11:32-11:63] const diagonal = Math.sqrt(≫width * width + height * height≪);
1+
[tests/fixtures/commands/select/basic-regex/expression-pattern.received.ts 9:18-9:32] const area = ≫width * height≪;
2+
[tests/fixtures/commands/select/basic-regex/expression-pattern.received.ts 10:23-10:37] const perimeter = ≫width + height≪;
3+
[tests/fixtures/commands/select/basic-regex/expression-pattern.received.ts 11:32-11:63] const diagonal = Math.sqrt(≫width * width + height * height≪);
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[simple-variable.received.ts 9:11-9:21] const ≫tempResult≪ = width * height;
2-
[simple-variable.received.ts 10:17-10:27] console.log(≫tempResult≪);
3-
[simple-variable.received.ts 11:12-11:22] return ≫tempResult≪ + 5;
1+
[tests/fixtures/commands/select/basic-regex/simple-variable.received.ts 9:11-9:21] const ≫tempResult≪ = width * height;
2+
[tests/fixtures/commands/select/basic-regex/simple-variable.received.ts 10:17-10:27] console.log(≫tempResult≪);
3+
[tests/fixtures/commands/select/basic-regex/simple-variable.received.ts 11:12-11:22] return ≫tempResult≪ + 5;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[function-definition.received.ts 10:-13:]
1+
[tests/fixtures/commands/select/definition-expansion/function-definition.received.ts 10:-13:]
22
function calculateTotal(a: number, b: number): number {
33
const result = a + b;
44
return result;
55
}
6-
[function-definition.received.ts 10:-13:]
6+
[tests/fixtures/commands/select/definition-expansion/function-definition.received.ts 10:-13:]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
[ignore-comments.received.ts 9:11-9:21] const ≫tempResult≪ = width * height;
2-
[ignore-comments.received.ts 11:12-11:22] return ≫tempResult≪ + 5;
1+
[tests/fixtures/commands/select/edge-cases/ignore-comments.received.ts 9:11-9:21] const ≫tempResult≪ = width * height;
2+
[tests/fixtures/commands/select/edge-cases/ignore-comments.received.ts 11:12-11:22] return ≫tempResult≪ + 5;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
[multiline-matches.received.ts 6:1-8:2] function simple() {
2-
[multiline-matches.received.ts 10:1-14:2] function complex() {
1+
[tests/fixtures/commands/select/edge-cases/multiline-matches.received.ts 6:1-8:2] function simple() {
2+
[tests/fixtures/commands/select/edge-cases/multiline-matches.received.ts 10:1-14:2] function complex() {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
[special-characters.received.ts 7:29-7:36] const template = "Hello ≫${name}≪, welcome to ${location}!";
2-
[special-characters.received.ts 7:49-7:60] const template = "Hello ${name}, welcome to ≫${location}≪!";
1+
[tests/fixtures/commands/select/edge-cases/special-characters.received.ts 7:29-7:36] const template = "Hello ≫${name}≪, welcome to ${location}!";
2+
[tests/fixtures/commands/select/edge-cases/special-characters.received.ts 7:49-7:60] const template = "Hello ${name}, welcome to ≫${location}≪!";
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[multiple-regex-patterns.received.ts 7:11-7:16] const ≫width≪ = 10;
2-
[multiple-regex-patterns.received.ts 8:11-8:17] const ≫height≪ = 20;
3-
[multiple-regex-patterns.received.ts 9:18-9:23] const area = ≫width≪ * height;
4-
[multiple-regex-patterns.received.ts 9:26-9:32] const area = width * ≫height≪;
5-
[multiple-regex-patterns.received.ts 10:28-10:33] const perimeter = 2 * (≫width≪ + height);
6-
[multiple-regex-patterns.received.ts 10:36-10:42] const perimeter = 2 * (width + ≫height≪);
1+
[tests/fixtures/commands/select/multi-pattern/multiple-regex-patterns.received.ts 7:11-7:16] const ≫width≪ = 10;
2+
[tests/fixtures/commands/select/multi-pattern/multiple-regex-patterns.received.ts 8:11-8:17] const ≫height≪ = 20;
3+
[tests/fixtures/commands/select/multi-pattern/multiple-regex-patterns.received.ts 9:18-9:23] const area = ≫width≪ * height;
4+
[tests/fixtures/commands/select/multi-pattern/multiple-regex-patterns.received.ts 9:26-9:32] const area = width * ≫height≪;
5+
[tests/fixtures/commands/select/multi-pattern/multiple-regex-patterns.received.ts 10:28-10:33] const perimeter = 2 * (≫width≪ + height);
6+
[tests/fixtures/commands/select/multi-pattern/multiple-regex-patterns.received.ts 10:36-10:42] const perimeter = 2 * (width + ≫height≪);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[narrow-down-with-capture-group.received.ts 8:11-8:21] const ◆≫tempResult≪ = transform(input◇);
1+
[tests/fixtures/commands/select/with-capture-group/narrow-down-with-capture-group.received.ts 8:11-8:21] const ◆≫tempResult≪ = transform(input◇);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[preview-match.received.ts 8:11-8:21] const ◆≫tempResult≪ = transform(input◇);
1+
[tests/fixtures/commands/select/with-capture-group/preview-match.received.ts 8:11-8:21] const ◆≫tempResult≪ = transform(input◇);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
[include-line.received.ts 8:-8:] const ≫tempResult≪ = transform(input);
2-
[include-line.received.ts 9:-9:] const output = validate(≫tempResult≪);
1+
[tests/fixtures/commands/select/with-context/include-line.received.ts 8:-8:] const ≫tempResult≪ = transform(input);
2+
[tests/fixtures/commands/select/with-context/include-line.received.ts 9:-9:] const output = validate(≫tempResult≪);

0 commit comments

Comments
 (0)