@@ -2,7 +2,8 @@ import { module, test } from 'qunit';
2
2
3
3
import { IndexerDBClient } from '@cardstack/runtime-common' ;
4
4
import { runSharedTest } from '@cardstack/runtime-common/helpers' ;
5
- import indexerTests from '@cardstack/runtime-common/tests/indexer' ;
5
+ // eslint-disable-next-line ember/no-test-import-export
6
+ import indexerTests from '@cardstack/runtime-common/tests/indexer-test' ;
6
7
7
8
import ENV from '@cardstack/host/config/environment' ;
8
9
import SQLiteAdapter from '@cardstack/host/lib/sqlite-adapter' ;
@@ -24,46 +25,46 @@ module('Unit | indexer', function (hooks) {
24
25
} ) ;
25
26
26
27
test ( 'can perform invalidations for an index entry' , async function ( assert ) {
27
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
28
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
28
29
} ) ;
29
30
30
31
test ( 'does not create invalidation record for non-JSON invalidation' , async function ( assert ) {
31
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
32
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
32
33
} ) ;
33
34
34
35
test ( 'only invalidates latest version of content' , async function ( assert ) {
35
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
36
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
36
37
} ) ;
37
38
38
39
test ( 'can prevent concurrent batch invalidations from colliding' , async function ( assert ) {
39
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
40
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
40
41
} ) ;
41
42
42
43
test ( 'can prevent concurrent batch invalidations from colliding when making new generation' , async function ( assert ) {
43
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
44
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
44
45
} ) ;
45
46
46
47
test ( 'can update an index entry' , async function ( assert ) {
47
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
48
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
48
49
} ) ;
49
50
50
51
test ( 'can remove an index entry' , async function ( assert ) {
51
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
52
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
52
53
} ) ;
53
54
54
55
test ( 'can create a new generation of index entries' , async function ( assert ) {
55
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
56
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
56
57
} ) ;
57
58
58
59
test ( 'can get "production" index entry' , async function ( assert ) {
59
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
60
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
60
61
} ) ;
61
62
62
63
test ( 'can get work in progress index entry' , async function ( assert ) {
63
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
64
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
64
65
} ) ;
65
66
66
67
test ( 'returns undefined when getting a deleted entry' , async function ( assert ) {
67
- await runSharedTest ( indexerTests , assert , client , adapter ) ;
68
+ await runSharedTest ( indexerTests , assert , { client, adapter } ) ;
68
69
} ) ;
69
70
} ) ;
0 commit comments