'use strict'; describe('browser build', function() { before(function() { this.text = 'var say = "Hello";'; this.html = `
${this.text}
`;
this.expect = '' +
'var say = ' +
'"Hello";';
});
require('./plain');
require('./worker');
});