@@ -11,36 +11,18 @@ statement ( ) ;
1111</script>
1212<template></template>"# ;
1313
14- const VUE_IMPLICIT_JS_FILE_FORMATTED : & str = r#"<script>
15- import { something } from "file.vue";
16- statement();
17- </script>
18- <template></template>"# ;
19-
2014const VUE_EXPLICIT_JS_FILE_UNFORMATTED : & str = r#"<script lang="js">
2115import { something } from "file.vue";
2216statement ( ) ;
2317</script>
2418<template></template>"# ;
2519
26- const VUE_EXPLICIT_JS_FILE_FORMATTED : & str = r#"<script lang="js">
27- import { something } from "file.vue";
28- statement();
29- </script>
30- <template></template>"# ;
31-
3220const VUE_TS_FILE_UNFORMATTED : & str = r#"<script setup lang="ts">
3321import { type something } from "file.vue";
3422const hello : string = "world";
3523</script>
3624<template></template>"# ;
3725
38- const VUE_TS_FILE_FORMATTED : & str = r#"<script setup lang="ts">
39- import { type something } from "file.vue";
40- const hello: string = "world";
41- </script>
42- <template></template>"# ;
43-
4426const VUE_JS_FILE_NOT_LINTED : & str = r#"<script setup lang="js">
4527a == b;
4628delete a.c;
@@ -155,8 +137,6 @@ fn format_vue_implicit_js_files_write() {
155137
156138 assert ! ( result. is_ok( ) , "run_cli returned {result:?}" ) ;
157139
158- assert_file_contents ( & fs, vue_file_path, VUE_IMPLICIT_JS_FILE_FORMATTED ) ;
159-
160140 assert_cli_snapshot ( SnapshotPayload :: new (
161141 module_path ! ( ) ,
162142 "format_vue_implicit_js_files_write" ,
@@ -215,8 +195,6 @@ fn format_vue_explicit_js_files_write() {
215195
216196 assert ! ( result. is_ok( ) , "run_cli returned {result:?}" ) ;
217197
218- assert_file_contents ( & fs, vue_file_path, VUE_EXPLICIT_JS_FILE_FORMATTED ) ;
219-
220198 assert_cli_snapshot ( SnapshotPayload :: new (
221199 module_path ! ( ) ,
222200 "format_vue_explicit_js_files_write" ,
@@ -296,8 +274,6 @@ fn format_vue_ts_files_write() {
296274
297275 assert ! ( result. is_ok( ) , "run_cli returned {result:?}" ) ;
298276
299- assert_file_contents ( & fs, vue_file_path, VUE_TS_FILE_FORMATTED ) ;
300-
301277 assert_cli_snapshot ( SnapshotPayload :: new (
302278 module_path ! ( ) ,
303279 "format_vue_ts_files_write" ,
0 commit comments