summaryrefslogtreecommitdiff
path: root/test/fixers
diff options
context:
space:
mode:
authorBraden Kelley <redbmk@gmail.com>2024-06-20 16:19:55 -0700
committerGitHub <noreply@github.com>2024-06-21 08:19:55 +0900
commit0cd64c87bf72f9237eedb9bdc9739411be9120cb (patch)
treebb498effac76da44f24a870ee2a23a9a36724878 /test/fixers
parentc7c41e157478fc9d4f65e9f640bfce75fa211fd7 (diff)
downloadale-0cd64c87bf72f9237eedb9bdc9739411be9120cb.zip
fix(biome): use temp file instead of stdin (#4775)
biome handles utf8 characters differently between files and stdin, and in some cases can replace emojis with ascii characters when using stdin refs: biomejs/biome#2604
Diffstat (limited to 'test/fixers')
-rw-r--r--test/fixers/test_biome_fixer_callback.vader3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/fixers/test_biome_fixer_callback.vader b/test/fixers/test_biome_fixer_callback.vader
index 632a7ec4..4c417394 100644
--- a/test/fixers/test_biome_fixer_callback.vader
+++ b/test/fixers/test_biome_fixer_callback.vader
@@ -9,7 +9,8 @@ Execute(The default biome command should be correct):
AssertFixer
\ {
+ \ 'read_temporary_file': 1,
\ 'command': ale#Escape('biome')
- \ . ' format --stdin-file-path=%s'
+ \ . ' format %t'
\ }