Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmiei committed Nov 25, 2024
1 parent 3ff258d commit d72d5f8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/source/transpilable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ class Test {
const both = firstConcat.concat(secondConcat);
console.log(both.length); // should print 4
console.log(both[2]); // should print "c"

const baseString = "aabba";
const replacedAllString = baseString.replaceAll("a", "");
console.log(replacedAllString); // should print "bb"
}
}

Expand Down

0 comments on commit d72d5f8

Please sign in to comment.