Tiddler sql function tests should show custom field

This commit is contained in:
jeremy@jermolene.com
2023-06-23 14:52:14 +01:00
parent c43bc8f92a
commit 831fb3996d
+1 -1
View File
@@ -70,7 +70,7 @@ $tw.Wiki = function(options) {
}
sqlSaveTiddler({title: "HelloThere", text: "One"});
console.log(sqlGetTiddler("HelloThere"));
sqlSaveTiddler({title: "HelloThere", text: "Two"});
sqlSaveTiddler({title: "HelloThere", text: "Two", custom: "A custom field"});
console.log(sqlGetTiddler("HelloThere"));
// Plain JS wiki store implementation follows
options = options || {};