We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f780ddf commit 365b025Copy full SHA for 365b025
README.md
@@ -1149,13 +1149,13 @@ pluginTester({
1149
snapshot: true,
1150
tests: [
1151
{
1152
- code: '"hello";'
+ code: "'hello';"
1153
// Snapshot should show that code has not changed.
1154
},
1155
1156
snapshot: false,
1157
code: 'var hello = "hi";',
1158
- output: "var olleh = 'hi';"
+ output: 'var olleh = "hi";'
1159
1160
`
1161
function sayHi(person) {
@@ -1295,7 +1295,7 @@ pluginTester({
1295
1296
1297
title: 'unchanged code',
1298
- code: "'no change';",
+ code: '"no change";',
1299
setup() {
1300
// Runs before this test
1301
return function teardown() {
0 commit comments