Skip to content

Commit 365b025

Browse files
committed
docs(readme): ensure examples work using standard prettier configuration
1 parent f780ddf commit 365b025

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1149,13 +1149,13 @@ pluginTester({
11491149
snapshot: true,
11501150
tests: [
11511151
{
1152-
code: '"hello";'
1152+
code: "'hello';"
11531153
// Snapshot should show that code has not changed.
11541154
},
11551155
{
11561156
snapshot: false,
11571157
code: 'var hello = "hi";',
1158-
output: "var olleh = 'hi';"
1158+
output: 'var olleh = "hi";'
11591159
},
11601160
`
11611161
function sayHi(person) {
@@ -1295,7 +1295,7 @@ pluginTester({
12951295
},
12961296
{
12971297
title: 'unchanged code',
1298-
code: "'no change';",
1298+
code: '"no change";',
12991299
setup() {
13001300
// Runs before this test
13011301
return function teardown() {

0 commit comments

Comments
 (0)