(fileName: string)
| 42 | * Load SQL file contents |
| 43 | */ |
| 44 | export function loadSqlFile(fileName: string): string { |
| 45 | const filePath = path.join(DEMO_DATA_DIR, fileName); |
| 46 | return fs.readFileSync(filePath, "utf8"); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Get SQLite DSN for in-memory database |
no outgoing calls
no test coverage detected