Add test for ConfigStoreOptions.configPath in @types/configstore

This commit is contained in:
Robin Hames
2018-12-02 19:21:34 +00:00
parent 788d99040f
commit ec7a15613f

View File

@@ -5,6 +5,7 @@ let value: any;
let key: string;
let num: number;
let object: any;
let path: string;
cs.set(key, value);
value = cs.get(key);
@@ -13,4 +14,12 @@ cs.delete(key);
object = cs.all;
cs.all = object;
num = cs.size;
key = cs.path;
path = cs.path;
const csWithPathOption = new Configstore('foo', null, { configPath: path });
csWithPathOption.set(key, value);
value = csWithPathOption.get(key);
csWithPathOption.delete(key);
key = csWithPathOption.path;