@@ -249,7 +249,7 @@ describe("Functional tests for the js:LdesClient Connector Architecture function
249
249
outputStream . data ( record => {
250
250
const store = RdfStore . createDefault ( ) ;
251
251
new Parser ( ) . parse ( record ) . forEach ( q => store . addQuad ( q ) ) ;
252
-
252
+
253
253
// Check which classes we got
254
254
for ( const classSuffix of observedClasses . keys ( ) ) {
255
255
if ( record . includes ( classSuffix ) ) {
@@ -263,13 +263,13 @@ describe("Functional tests for the js:LdesClient Connector Architecture function
263
263
! record . includes ( "<https://www.w3.org/ns/activitystreams#Delete>" )
264
264
) {
265
265
expect ( store . getQuads (
266
- null ,
267
- RDF . terms . type ,
266
+ null ,
267
+ RDF . terms . type ,
268
268
df . namedNode ( "http://www.opengis.net/ont/geosparql#Geometry" )
269
269
) . length ) . toBe ( 1 ) ;
270
270
expect ( store . getQuads (
271
- null ,
272
- df . namedNode ( GSP . custom ( "asWKT" ) )
271
+ null ,
272
+ df . namedNode ( GSP . custom ( "asWKT" ) )
273
273
) . length ) . toBe ( 1 ) ;
274
274
}
275
275
count ++ ;
@@ -318,7 +318,7 @@ describe("Functional tests for the js:LdesClient Connector Architecture function
318
318
outputStream . data ( record => {
319
319
const store = RdfStore . createDefault ( ) ;
320
320
new Parser ( ) . parse ( record ) . forEach ( q => store . addQuad ( q ) ) ;
321
-
321
+
322
322
// Check which classes we got
323
323
for ( const classSuffix of observedClasses . keys ( ) ) {
324
324
if ( record . includes ( classSuffix ) ) {
@@ -332,13 +332,13 @@ describe("Functional tests for the js:LdesClient Connector Architecture function
332
332
! record . includes ( "<https://www.w3.org/ns/activitystreams#Delete>" )
333
333
) {
334
334
expect ( store . getQuads (
335
- null ,
336
- RDF . terms . type ,
335
+ null ,
336
+ RDF . terms . type ,
337
337
df . namedNode ( GSP . custom ( "Geometry" ) )
338
338
) . length ) . toBe ( 1 ) ;
339
339
expect ( store . getQuads (
340
- null ,
341
- df . namedNode ( GSP . custom ( "asWKT" ) )
340
+ null ,
341
+ df . namedNode ( GSP . custom ( "asWKT" ) )
342
342
) . length ) . toBe ( 1 ) ;
343
343
}
344
344
count ++ ;
@@ -386,7 +386,7 @@ describe("Functional tests for the js:LdesClient Connector Architecture function
386
386
outputStream . data ( record => {
387
387
const store = RdfStore . createDefault ( ) ;
388
388
new Parser ( ) . parse ( record ) . forEach ( q => store . addQuad ( q ) ) ;
389
-
389
+
390
390
// Check which classes we got
391
391
for ( const classSuffix of observedClasses . keys ( ) ) {
392
392
if ( record . includes ( classSuffix ) ) {
@@ -400,8 +400,8 @@ describe("Functional tests for the js:LdesClient Connector Architecture function
400
400
! record . includes ( "<https://www.w3.org/ns/activitystreams#Delete>" )
401
401
) {
402
402
expect ( store . getQuads (
403
- null ,
404
- RDF . terms . type ,
403
+ null ,
404
+ RDF . terms . type ,
405
405
df . namedNode ( "http://www.opengis.net/ont/geosparql#Geometry" )
406
406
) . length ) . toBe ( 0 ) ;
407
407
}
@@ -428,4 +428,4 @@ describe("Functional tests for the js:LdesClient Connector Architecture function
428
428
// Check we saw all expected classes
429
429
expect ( Array . from ( observedClasses . values ( ) ) . every ( v => v === true ) ) . toBeTruthy ( ) ;
430
430
} ) ;
431
- } ) ;
431
+ } ) ;
0 commit comments