Skip to content

Commit

Permalink
false
Browse files Browse the repository at this point in the history
  • Loading branch information
RickiJay-WMDE committed Mar 2, 2024
1 parent ff9ca4d commit 897b1c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/specs/repo/queryservice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,11 @@ describe( 'QueryService', function () {
const resultText = await QueryServiceUIPage.resultTable.getText();

// item should not be included
expect( !resultText.includes( 'schema:version' ) ).toBe( true );
expect( !resultText.includes( 'schema:dateModified' ) ).toBe( true );
expect( !resultText.includes( 'wikibase:sitelinks' ) ).toBe( true );
expect( !resultText.includes( 'wikibase:identifiers' ) ).toBe( true );
expect( !resultText.includes( 'rdfs:label' ) ).toBe( true );
expect( resultText.includes( 'schema:version' ) ).toBe( false );
expect( resultText.includes( 'schema:dateModified' ) ).toBe( false );
expect( resultText.includes( 'wikibase:sitelinks' ) ).toBe( false );
expect( resultText.includes( 'wikibase:identifiers' ) ).toBe( false );
expect( resultText.includes( 'rdfs:label' ) ).toBe( false );

// timestamp always shows
expect( resultText.includes( 'wikibase:timestamp' ) ).toBe( true );
Expand Down

0 comments on commit 897b1c2

Please sign in to comment.