We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 848fa4f commit 97d188cCopy full SHA for 97d188c
src/notebooks/deepnote/deepnoteProjectUtils.unit.test.ts
@@ -40,11 +40,12 @@ project:
40
41
const result = await readDeepnoteProjectFile(testUri);
42
43
- assert.isDefined(result.version);
+ assert.strictEqual(result.version, '1');
44
assert.strictEqual(result.project.id, 'test-project-id');
45
assert.strictEqual(result.project.name, 'Test Project');
46
assert.strictEqual(result.project.notebooks.length, 1);
47
assert.strictEqual(result.project.notebooks[0].id, 'test-notebook-id');
48
+ assert.strictEqual(result.project.notebooks[0].name, 'Test Notebook');
49
});
50
51
test('should throw error for invalid YAML content', async () => {
0 commit comments