@@ -3,19 +3,19 @@ import { execSync } from "node:child_process";
3
3
import fs from "node:fs" ;
4
4
import path from "node:path" ;
5
5
import { ContinueServerClient } from "../continueServer/stubs/client.js" ;
6
- import { CodebaseIndexer , PauseToken } from "./CodebaseIndexer.js" ;
7
- import { getComputeDeleteAddRemove } from "./refreshIndex.js" ;
8
- import { TestCodebaseIndex } from "./TestCodebaseIndex.js" ;
9
- import { CodebaseIndex } from "./types.js" ;
10
- import { walkDir } from "./walkDir.js" ;
11
- import { getIndexSqlitePath } from "../util/paths.js" ;
12
6
import { testConfigHandler , testIde } from "../test/util/fixtures.js" ;
13
7
import {
14
8
addToTestDir ,
15
9
setUpTestDir ,
16
10
tearDownTestDir ,
17
11
TEST_DIR ,
18
12
} from "../test/util/testDir.js" ;
13
+ import { getIndexSqlitePath } from "../util/paths.js" ;
14
+ import { CodebaseIndexer , PauseToken } from "./CodebaseIndexer.js" ;
15
+ import { getComputeDeleteAddRemove } from "./refreshIndex.js" ;
16
+ import { TestCodebaseIndex } from "./TestCodebaseIndex.js" ;
17
+ import { CodebaseIndex } from "./types.js" ;
18
+ import { walkDir } from "./walkDir.js" ;
19
19
20
20
jest . useFakeTimers ( ) ;
21
21
@@ -57,7 +57,7 @@ class TestCodebaseIndexer extends CodebaseIndexer {
57
57
58
58
// These are more like integration tests, whereas we should separately test
59
59
// the individual CodebaseIndex classes
60
- describe . skip ( "CodebaseIndexer" , ( ) => {
60
+ describe ( "CodebaseIndexer" , ( ) => {
61
61
const pauseToken = new PauseToken ( false ) ;
62
62
const continueServerClient = new ContinueServerClient ( undefined , undefined ) ;
63
63
const codebaseIndexer = new TestCodebaseIndexer (
0 commit comments