test: add JavaScript fixture and update comment pattern tests

This commit is contained in:
Paul Gauthier (aider) 2024-12-01 10:02:53 -08:00
parent 5d5fed62f2
commit cbadfd59db
2 changed files with 34 additions and 4 deletions

27
tests/fixtures/watch.js vendored Normal file
View file

@ -0,0 +1,27 @@
// Regular AI comment
//ai do something
//AI make this better
//ai! urgent change needed
//AI! another urgent one
// ai with space
// AI with caps
// ai! with bang
// this is not an ai comment
// aider is not an ai comment
function dummyFunction() {
// ai inside function
return true;
}
class Example {
constructor() {
// ai in constructor
this.value = 42;
}
method() {
// ai in method
return this.value;
}
}