diff --git a/lib/svgo-node.test.js b/lib/svgo-node.test.js
index 2f0d077b5..76972e7bc 100644
--- a/lib/svgo-node.test.js
+++ b/lib/svgo-node.test.js
@@ -17,7 +17,7 @@ describeLF('with LF line-endings', () => {
@@ -34,7 +34,7 @@ describeLF('with LF line-endings', () => {
@@ -53,7 +53,7 @@ describeLF('with LF line-endings', () => {
@@ -74,7 +74,7 @@ describeCRLF('with CRLF line-endings', () => {
@@ -91,7 +91,7 @@ describeCRLF('with CRLF line-endings', () => {
@@ -110,7 +110,7 @@ describeCRLF('with CRLF line-endings', () => {
diff --git a/lib/svgo.test.js b/lib/svgo.test.js
index a1570b35e..4ac94b3cd 100644
--- a/lib/svgo.test.js
+++ b/lib/svgo.test.js
@@ -11,7 +11,7 @@ test('allow to setup default preset', () => {
@@ -46,7 +46,7 @@ test('allow to disable and customize plugins in preset', () => {
overrides: {
removeXMLProcInst: false,
removeDesc: {
- removeAny: false,
+ removeAny: true,
},
},
},
@@ -57,9 +57,6 @@ test('allow to disable and customize plugins in preset', () => {
expect(data).toMatchInlineSnapshot(`
"
"
@@ -104,7 +101,7 @@ describe('allow to configure EOL', () => {
@@ -123,7 +120,7 @@ describe('allow to configure EOL', () => {
@@ -142,7 +139,7 @@ describe('allow to configure EOL', () => {
@@ -163,7 +160,7 @@ describe('allow to configure final newline', () => {
@@ -180,7 +177,7 @@ describe('allow to configure final newline', () => {
@@ -199,7 +196,7 @@ describe('allow to configure final newline', () => {
diff --git a/plugins/removeDesc.js b/plugins/removeDesc.js
index 5d9e57aef..4520ed27c 100644
--- a/plugins/removeDesc.js
+++ b/plugins/removeDesc.js
@@ -19,7 +19,7 @@ const standardDescs = /^(Created with|Created using)/;
* @type {import('./plugins-types').Plugin<'removeDesc'>}
*/
exports.fn = (root, params) => {
- const { removeAny = true } = params;
+ const { removeAny = false } = params;
return {
element: {
enter: (node, parentNode) => {