forked from prettier/plugin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsfmt.spec.mjs.snap
More file actions
25 lines (23 loc) · 1.13 KB
/
Copy pathjsfmt.spec.mjs.snap
File metadata and controls
25 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`extension.php 1`] = `
====================================options=====================================
parsers: ["php"]
printWidth: 80
| printWidth
=====================================input======================================
<span><?php echo "string" ?></span>
=====================================output=====================================
<span><?php echo "string"; ?></span>
================================================================================
`;
exports[`extension.phtml 1`] = `
====================================options=====================================
parsers: ["php"]
printWidth: 80
| printWidth
=====================================input======================================
<span><?php echo "string" ?></span>
=====================================output=====================================
<span><?php echo "string"; ?></span>
================================================================================
`;