Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
RickiJay-WMDE committed Nov 9, 2023
1 parent eec2e04 commit 3acb30f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/specs/repo/special-property.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand All @@ -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 );
} );
Expand Down

0 comments on commit 3acb30f

Please sign in to comment.