Skip to content

Commit

Permalink
test(eslint): use singlequote
Browse files Browse the repository at this point in the history
  • Loading branch information
weyusi committed Oct 28, 2018
1 parent 914c618 commit 348f639
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/scripts/filters/meta_generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ describe('Meta Generator', function() {
const cheerio = require('cheerio');

it('default', function() {
const content = `<head><link></head>`;
const content = '<head><link></head>';
const result = metaGenerator(content);

const $ = cheerio.load(result);
$('meta[name="generator"]').length.should.eql(1);
});

it('empty <head>', function() {
const content = `<head></head>`;
const content = '<head></head>';
const result = metaGenerator(content);

const $ = cheerio.load(result);
Expand Down

0 comments on commit 348f639

Please sign in to comment.