Skip to content

Commit

Permalink
Core: Upgrade diff library
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Nov 13, 2023
1 parent 5b86ff0 commit 703118b
Show file tree
Hide file tree
Showing 10 changed files with 2,183 additions and 1,010 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ module.exports = function (grunt) {
'test/main/assert-timeout.js',
'test/main/async.js',
'test/main/deepEqual.js',
'test/main/diff.js',
'test/main/dump.js',
'test/main/each.js',
'test/main/modules.js',
Expand Down
4 changes: 2 additions & 2 deletions src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import ProcessingQueue from './core/processing-queue';
import { on, emit } from './events';
import onWindowError from './core/onerror';
import onUncaughtException from './core/on-uncaught-exception';
import diff from './core/diff';
import { diffHtml } from './core/diff';

const QUnit = {};

Expand All @@ -43,7 +43,7 @@ QUnit.version = '@VERSION';
extend(QUnit, {
config,

diff,
diff: diffHtml,
dump,
equiv,
reporters,
Expand Down
Loading

0 comments on commit 703118b

Please sign in to comment.