index.js 402 B

1234567891011121314
  1. 'use strict';
  2. describe('browser build', function() {
  3. before(function() {
  4. this.text = 'var say = "Hello";';
  5. this.html = `<pre><code class="javascript">${this.text}</code></pre>`;
  6. this.expect = '<span class="hljs-keyword">' +
  7. 'var</span> say = <span class="hljs-string">' +
  8. '"Hello"</span>;';
  9. });
  10. require('./plain');
  11. require('./worker');
  12. });