From 3acb30f8fb07e933e36b184ff9228048b36c31f6 Mon Sep 17 00:00:00 2001 From: Ricki Jay Date: Thu, 9 Nov 2023 12:47:11 +0100 Subject: [PATCH] Lint --- test/specs/repo/special-property.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/specs/repo/special-property.ts b/test/specs/repo/special-property.ts index 4ee0dae05..8611d46db 100644 --- a/test/specs/repo/special-property.ts +++ b/test/specs/repo/special-property.ts @@ -20,7 +20,8 @@ describe( 'Special:NewProperty', function () { it( 'Should be able to see newly created properties in list of properties special page', async () => { await SpecialListProperties.openParams( { limit: 1000 } ); - const numberOfPropertiesBefore = await SpecialListProperties.properties.length; + const numberOfPropertiesBefore = + await SpecialListProperties.properties.length; await SpecialNewProperty.open( 'string' ); await SpecialNewProperty.labelInput.setValue( 'Property type string' ); @@ -32,7 +33,8 @@ describe( 'Special:NewProperty', function () { await browser.pause( 1100 ); await SpecialListProperties.openParams( { limit: 1000 } ); - const numberOfPropertiesAfter = await SpecialListProperties.properties.length; + const numberOfPropertiesAfter = + await SpecialListProperties.properties.length; assert.strictEqual( numberOfPropertiesAfter, numberOfPropertiesBefore + 1 ); } );