Skip to content

Commit 502ff4f

Browse files
committed
Use apostrophe instead of double quotes
1 parent 81aed1c commit 502ff4f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/watcher.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
2-
const chalk = require('chalk');
32
const nodePath = require('path');
3+
const chalk = require('chalk');
44
const debug = require('debug')('ava:watcher');
55
const diff = require('lodash.difference');
66
const chokidar = require('chokidar');
@@ -19,8 +19,7 @@ function rethrowAsync(err) {
1919

2020
const MIN_DEBOUNCE_DELAY = 10;
2121
const INITIAL_DEBOUNCE_DELAY = 100;
22-
const rerunMessage = chalk.gray.dim("To rerun all tests, type 'r', followed by Enter\nTo update snapshots used in the previous tests, type 'u', followed by Enter\n");
23-
22+
const rerunMessage = chalk.gray.dim(`To rerun all tests, type 'r', followed by Enter\nTo update snapshots used in the previous tests, type 'u', followed by Enter\n`);
2423

2524
class Debouncer {
2625
constructor(watcher) {

0 commit comments

Comments
 (0)