Add basic notebook model tests (#3396)

- Ported from the extension
- Only adding tests that related to the internally implemented functionality, not to anything provider-specific.
This commit is contained in:
Kevin Cunnane
2018-12-04 10:01:10 -08:00
committed by GitHub
parent 27a978cba5
commit 8d8be27f22
10 changed files with 1214 additions and 3 deletions

3
src/typings/temp-write.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
declare module 'temp-write' {
function sync(input: string, filePath?: string): string;
}