Skip to content

Commit 49b82c8

Browse files
committed
Reviews
1 parent 2d5018d commit 49b82c8

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

src/app.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function bind<P>(C: ComponentConstructor<P, {}>, bindProps: BindProps<P>) {
106106
}
107107

108108
// An anonymous notebook doc for when users aren't logged in
109-
const anonDoc = {
109+
export const anonDoc = {
110110
anonymous: true,
111111
cells: [],
112112
created: new Date(),

src/nb_test.ts

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { h, render, rerender } from "preact";
22
import { testBrowser } from "../tools/tester";
3-
import { NotebookPage, ProfilePage } from "./app";
3+
import { anonDoc, NotebookPage, ProfilePage } from "./app";
44
import { cellExecuteQueue } from "./components/cell";
55
import { Notebook } from "./components/notebook";
66
import * as db from "./db";
@@ -218,16 +218,9 @@ async function renderNotebook(): Promise<Notebook> {
218218
let notebook: Notebook;
219219
const nb = h(Notebook as any, {
220220
initialDoc: {
221-
anonymous: true,
221+
...anonDoc,
222222
cells: ["let a = 4", "let b = 5"],
223-
created: new Date(),
224-
owner: {
225-
displayName: "Anonymous",
226-
photoURL: require("./img/anon_profile.png"),
227-
uid: ""
228-
},
229223
title: DOC_TITLE,
230-
updated: new Date()
231224
},
232225
ref: ref => (notebook = ref)
233226
});

0 commit comments

Comments
 (0)