Skip to content

Commit 04291ef

Browse files
author
Christopher J. Brody
committed
enable tests on FTS5, R-Tree, and JSON1
1 parent e8a42bc commit 04291ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/www/spec/db-tx-sql-features-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ var mytests = function() {
181181

182182
it(suiteName + 'Basic JSON1 json test', function(done) {
183183
if (isWebSql) pending('SKIP for Web SQL (not implemented)');
184-
if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // XXX FUTURE TODO
184+
// if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // XXX FUTURE TODO
185185
if (!isWebSql && !isWindows && isAndroid && isImpl2) pending('TBD SKIP for androidDatabaseImplementation: 2'); // XXX TBD
186186

187187
var db = openDatabase('basic-json1-json-test.db', '1.0', 'Test', DEFAULT_SIZE);
@@ -211,7 +211,7 @@ var mytests = function() {
211211

212212
it(suiteName + 'JSON1 json_object test', function(done) {
213213
if (isWebSql) pending('SKIP for Web SQL (not implemented)');
214-
if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // XXX FUTURE TODO
214+
// if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // XXX FUTURE TODO
215215
if (!isWebSql && !isWindows && isAndroid && isImpl2) pending('TBD SKIP for androidDatabaseImplementation: 2'); // XXX TBD
216216

217217
var db = openDatabase('json1-json-object-test.db', '1.0', 'Test', DEFAULT_SIZE);
@@ -242,7 +242,7 @@ var mytests = function() {
242242

243243
it(suiteName + 'create virtual table using FTS5', function(done) {
244244
if (isWebSql) pending('SKIP for Web SQL (not implemented)');
245-
if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // XXX FUTURE TODO
245+
// if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // XXX FUTURE TODO
246246
if (!isWebSql && !isWindows && isAndroid && isImpl2) pending('TBD SKIP for androidDatabaseImplementation: 2'); // XXX TBD
247247

248248
var db = openDatabase('virtual-table-using-fts5.db', '1.0', 'Test', DEFAULT_SIZE);
@@ -287,7 +287,7 @@ var mytests = function() {
287287
it(suiteName + 'create virtual table using R-Tree', function(done) {
288288
if (isWebSql) pending('SKIP for Web SQL');
289289
if (isAndroid && isImpl2) pending('NOT IMPLEMENTED for all versions of android.database'); // NOT IMPLEMENTED for all versions of Android database (failed in Circle CI)
290-
if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // FUTURE TODO
290+
// if (!isWebSql && isBrowser) pending('NOT IMPLEMENTED on plugin for browser platform'); // FUTURE TODO
291291

292292
var db = openDatabase('virtual-table-using-r-tree.db', '1.0', 'Test', DEFAULT_SIZE);
293293

0 commit comments

Comments
 (0)