From 4c709fc622e609dae7578aeddca4056e3e8b797a Mon Sep 17 00:00:00 2001 From: Marcelo Serpa <81248+fullofcaffeine@users.noreply.github.com> Date: Fri, 18 Jun 2021 11:27:01 -0500 Subject: [PATCH] Cleanup --- packages/e2e-tests/specs/misc/settings.test.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/e2e-tests/specs/misc/settings.test.js b/packages/e2e-tests/specs/misc/settings.test.js index e2bf0457cbd90a..9189292fa4f637 100644 --- a/packages/e2e-tests/specs/misc/settings.test.js +++ b/packages/e2e-tests/specs/misc/settings.test.js @@ -2,9 +2,6 @@ * WordPress dependencies */ import { visitAdminPage } from '@wordpress/e2e-test-utils'; -/** - * Internal dependencies - */ async function getOptionsValues( selector ) { await visitAdminPage( 'options.php' ); @@ -19,8 +16,8 @@ async function getOptionsValues( selector ) { describe( 'Settings', () => { test( 'Regression: updating a specific option will only change its value and will not corrupt others', async () => { - // We won't select the option that we updated and will also remove some _transient options that seem to change at - // every update (?) + // We won't select the option that we updated and will also remove some + // _transient options that seem to change at every update (?) const optionsInputsSelector = 'form#all-options table.form-table input:not([id*="_transient"]):not([id="blogdescription"])'; const optionsBefore = await getOptionsValues( optionsInputsSelector );