(filename: string)
| 62 | |
| 63 | // Load example files (tests run from project root) |
| 64 | function loadExampleFile(filename: string): DeepnoteFile { |
| 65 | const filePath = `examples/${filename}` |
| 66 | const rawBytes = readFileSync(filePath) |
| 67 | const content = decodeUtf8NoBom(rawBytes) |
| 68 | return deserializeDeepnoteFile(content) |
| 69 | } |
| 70 | |
| 71 | function loadFixture(filename: string): DeepnoteFile { |
| 72 | const filePath = `test-fixtures/${filename}` |
no test coverage detected