How to use beautify-benchmark - 10 common examples

To help you get started, we’ve selected a few beautify-benchmark examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Redocly / redoc / benchmark / benchmark.js View on Github external
page.on('console', async msg => {
        const args = msg.args();
        const obj = args.length > 0 && (await args[0].jsonValue());
        if (!obj) return;

        if (obj.done) {
          beautifyBenchmark.log();
          // resolve(obj);
        } else if (obj.cycle) {
          beautifyBenchmark.add(obj.cycle);
        } else if (obj.allDone) {
          resolve();
        } else {
          console.log(obj);
        }
      });
      await page.goto('http://127.0.0.1:9090', { timeout: 0 });
github jshttp / compressible / test / benchmarks.js View on Github external
.on('complete', function done () {
      console.log('\n  Done!')
      var result = benchmarks.getPercent('current')
      benchmarks.log()
      if (result < 90)
        assert.fail('' + result + '%', '90%`', null, '>=', done)
    })
    .run({ 'async': false })
github tjanczuk / iisnode / src / iisnode / node-inspector-0.7.3 / node_modules / node-inspector / node_modules / compressible / bench.js View on Github external
.on('complete', function done () {
      console.log('\n  Done!')
      var result = benchmarks.getPercent('current')
      benchmarks.log()
      if (result < 95)
        assert.fail('' + result + '%', '95%`', null, '>=', done)
    })
    .run({ 'async': false })
github selfrefactor / rambda / benchmarks / index.js View on Github external
.on('cycle', event => {
        if (BEAUTIFY){
          benchmarks.add(event.target)
        } else {
          console.log(String(event.target))
        }
      })
      .on('complete', () => {
github bvaughn / js-search / benchmarks / create-index.js View on Github external
.on('cycle', (event) => {
      console.log(String(event.target));
      bb.add(event.target);
    })
    .on('complete', () => {
github bvaughn / js-search / benchmarks / search.js View on Github external
.on('cycle', (event) => {
      console.log(String(event.target));
      bb.add(event.target);
    })
    .on('complete', () => {
github pmq20 / fast-hessian / benchmark / decode.js View on Github external
.on('complete', function done() {
  benchmarks.log();
})
.run({ 'async': false });
github pmq20 / fast-hessian / benchmark / encode.js View on Github external
.on('complete', function done() {
  benchmarks.log();
})
.run({ 'async': false });
github node-modules / byte / benchmark / buffer_slice_and_copy.js View on Github external
.on('complete', function done() {
  benchmarks.log();
})
.run({ 'async': false });
github Nevon / express-physical / scripts / performance / benchmarks / index.js View on Github external
.on("cycle", event => {
      if (event.target.error) {
        event.target.error = {
          stack: event.target.error.stack
        };
      }
      bb.add(event.target);
    })
    .on("complete", () => {

beautify-benchmark

Beautify Benchmark.js's output into readable form.

MIT
Latest version published 10 years ago

Package Health Score

42 / 100
Full package analysis

Popular beautify-benchmark functions

Similar packages