Skip to content

Commit 0cf03a6

Browse files
committed
update packages
1 parent 6aeefd6 commit 0cf03a6

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"devDependencies": {
4444
"@lodder/grunt-postcss": "^3.1.1",
4545
"@lodder/time-grunt": "^4.0.0",
46-
"@rollup/plugin-node-resolve": "^16.0.1",
46+
"@rollup/plugin-node-resolve": "^16.0.2",
4747
"@w8tcha/grunt-dev-update": "^2.3.4",
4848
"autoprefixer": "^10.4.21",
4949
"cssnano": "^7.1.1",
@@ -64,11 +64,11 @@
6464
"loader-utils": "^3.3.1",
6565
"postcss": "^8.5.6",
6666
"postcss-header": "^3.0.3",
67-
"qunit": "^2.24.1",
67+
"qunit": "^2.24.2",
6868
"rangy": "^1.3.2",
6969
"sass": "^1.93.2",
7070
"sinon": "^21.0.0",
71-
"webpack": "^5.102.0",
71+
"webpack": "^5.102.1",
7272
"webpack-dev-server": "^5.2.2"
7373
},
7474
"dependencies": {

tests/unit/lib/SCEditor.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ QUnit.test('autofocus', function (assert) {
8989
range.insertNode(cursor);
9090

9191
assert.nodesEqual(body.firstChild, utils.htmlToNode(
92-
'<p>|The quick brown fox jumps over the lazy dog.<br /></p>'
92+
'<div>|&lt;p&gt;The quick brown fox jumps over the lazy dog.&lt;br /&gt;&lt;/p&gt;</div>'
9393
));
9494
});
9595

@@ -111,8 +111,7 @@ QUnit.test('autofocusEnd', function (assert) {
111111

112112
range.insertNode(cursor);
113113

114-
const expected = '<p>The quick brown fox jumps ' +
115-
'over the lazy dog.|<br /></p>';
114+
const expected = '<div>&lt;p&gt;The quick brown fox jumps over the lazy dog.&lt;br /&gt;&lt;/p&gt;|';
116115

117116
assert.nodesEqual(body.firstChild, utils.htmlToNode(expected));
118117
});

0 commit comments

Comments
 (0)