~endlessm/jasmine-gjs/trunk

« back to all changes in this revision

Viewing changes to src/verboseReporter.js

  • Committer: Philip Chimento
  • Date: 2020-08-15 18:13:47 UTC
  • Revision ID: git-v1:452c83fe6c924d5b94315b98e189441971960dc2
let -> const

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
    jasmineDone() {
23
23
        this._print('\n');
24
24
        this._failedSpecs.forEach(this._printSpecFailureDetails, this);
25
 
        let seconds = Math.round(this.elapsedTime('main')) / 1000;
 
25
        const seconds = Math.round(this.elapsedTime('main')) / 1000;
26
26
 
27
27
        this._print(this._color('  %d passing'.format(this._passingCount), GREEN));
28
28
        this._print(' (%f s)\n'.format(seconds));