Permalink
Browse files
Remove ES6 template strings for node 0.10+ compatibility
- Loading branch information...
Showing
with
1 addition
and
1 deletion.
-
+1
−1
test/strip-stack-overflow.js
|
@@ -3,7 +3,7 @@ var fun = require('../lib/utils').stripStackOverflow; |
|
|
|
|
|
describe('stripStackOverflow', function() {
|
|
|
it('should not strip -f parameters in the title', function () {
|
|
|
- var title = `monitoring - How does the "tail" command's "-f" parameter ...`;
|
|
|
+ var title = 'monitoring - How does the "tail" command\'s "-f" parameter ...';
|
|
|
assert.equal(fun(title), title);
|
|
|
});
|
|
|
it('should strip Unix & Linux Stack Exchange', function() {
|
|
|
0 comments on commit
627b064