-
Notifications
You must be signed in to change notification settings - Fork 939
WIP: refactor(database): Add migrated test harness [Part 3/3] #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 31 commits
4a0df56
dcf2f5c
7e609d6
e72bfbe
2f6a406
19519ac
2758ca7
7f78f89
b12a61f
a046261
622fed8
d35b183
c81583d
f4fc618
342d527
c51999a
c0eba9c
e290f67
c0af997
1223678
9e08172
379a263
3193651
d5f99d8
58f8bff
869b9a5
ebe491c
2b1efa4
c40a189
d78d6c4
2939025
d214ba0
dc5c374
71ff51c
2531901
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
npm-debug.log | ||
/coverage | ||
/.nyc_output | ||
/tests/integration/config | ||
/tests/config | ||
/temp | ||
/.vscode | ||
/.vscode | ||
/.ts-node |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,7 @@ export const buildLogMessage_ = function(var_args) { | |
* Use this for all debug messages in Firebase. | ||
* @type {?function(string)} | ||
*/ | ||
export var logger = console.log.bind(console); | ||
export var logger = null; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Intentional? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, the value is originally |
||
|
||
|
||
/** | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { IndexedFilter } from "./IndexedFilter"; | ||
import { PRIORITY_INDEX } from "../../../core/snap/indexes/PriorityIndex"; | ||
import { NamedNode } from "../../../core/snap/Node"; | ||
import { Node, NamedNode } from "../../../core/snap/Node"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't seem to be needed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typescript throws an "Unknown Symbol" compiler error if it isn't present :( |
||
import { ChildrenNode } from "../../../core/snap/ChildrenNode"; | ||
/** | ||
* Filters nodes by range and uses an IndexFilter to track any changes after filtering the node | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo (here and everywhere)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll get it fixed.