2013-11-27 17:18:09 +00:00
|
|
|
define([
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add your test spec files to the list in order to
|
|
|
|
* get them running by default.
|
|
|
|
*/
|
|
|
|
|
2014-01-14 15:56:36 +00:00
|
|
|
// Filer
|
|
|
|
"spec/filer.spec",
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-01-14 15:56:36 +00:00
|
|
|
// Filer.FileSystem.*
|
2013-11-27 17:18:09 +00:00
|
|
|
"spec/fs.spec",
|
|
|
|
"spec/fs.stat.spec",
|
|
|
|
"spec/fs.lstat.spec",
|
2014-02-21 11:53:12 +00:00
|
|
|
"spec/fs.exists.spec",
|
2013-11-27 17:18:09 +00:00
|
|
|
"spec/fs.mkdir.spec",
|
|
|
|
"spec/fs.readdir.spec",
|
|
|
|
"spec/fs.rmdir.spec",
|
|
|
|
"spec/fs.open.spec",
|
|
|
|
"spec/fs.write.spec",
|
|
|
|
"spec/fs.writeFile-readFile.spec",
|
2014-01-30 19:12:32 +00:00
|
|
|
"spec/fs.appendFile.spec",
|
2013-11-27 17:18:09 +00:00
|
|
|
"spec/fs.read.spec",
|
|
|
|
"spec/fs.close.spec",
|
|
|
|
"spec/fs.link.spec",
|
|
|
|
"spec/fs.unlink.spec",
|
|
|
|
"spec/fs.rename.spec",
|
|
|
|
"spec/fs.lseek.spec",
|
|
|
|
"spec/fs.symlink.spec",
|
|
|
|
"spec/fs.readlink.spec",
|
2013-12-10 16:59:44 +00:00
|
|
|
"spec/fs.truncate.spec",
|
2013-12-13 05:46:31 +00:00
|
|
|
"spec/fs.utimes.spec",
|
2013-12-21 21:30:40 +00:00
|
|
|
"spec/fs.xattr.spec",
|
2013-11-27 17:18:09 +00:00
|
|
|
"spec/path-resolution.spec",
|
|
|
|
|
2014-01-14 15:56:36 +00:00
|
|
|
// Filer.FileSystem.providers.*
|
2013-11-27 17:18:09 +00:00
|
|
|
"spec/providers/providers.spec",
|
|
|
|
"spec/providers/providers.memory.spec",
|
|
|
|
"spec/providers/providers.indexeddb.spec",
|
2013-11-27 21:52:52 +00:00
|
|
|
"spec/providers/providers.websql.spec",
|
2013-12-01 21:41:04 +00:00
|
|
|
|
2014-01-14 15:56:36 +00:00
|
|
|
// Filer.FileSystem.adapters.*
|
2013-12-01 21:41:04 +00:00
|
|
|
"spec/adapters/adapters.spec",
|
2013-12-03 20:14:20 +00:00
|
|
|
"spec/adapters/adapters.general.spec",
|
2013-11-27 17:18:09 +00:00
|
|
|
|
2014-02-15 15:54:54 +00:00
|
|
|
// Filer.FileSystemShell.*
|
2014-02-17 15:47:47 +00:00
|
|
|
"spec/shell/cd.spec",
|
2014-02-15 15:54:54 +00:00
|
|
|
"spec/shell/touch.spec",
|
2014-02-15 20:28:00 +00:00
|
|
|
"spec/shell/exec.spec",
|
2014-02-18 19:51:06 +00:00
|
|
|
"spec/shell/cat.spec",
|
2014-02-18 21:48:53 +00:00
|
|
|
"spec/shell/ls.spec",
|
2014-02-19 16:25:30 +00:00
|
|
|
"spec/shell/rm.spec",
|
2014-02-19 17:15:02 +00:00
|
|
|
"spec/shell/env.spec",
|
2014-02-15 15:54:54 +00:00
|
|
|
|
2013-11-27 17:18:09 +00:00
|
|
|
// Ported node.js tests (filenames match names in https://github.com/joyent/node/tree/master/test)
|
|
|
|
"spec/node-js/simple/test-fs-mkdir",
|
2014-02-07 03:38:39 +00:00
|
|
|
"spec/node-js/simple/test-fs-null-bytes",
|
|
|
|
|
|
|
|
// Regressions, Bugs
|
2014-01-21 21:25:09 +00:00
|
|
|
"bugs/issue105",
|
|
|
|
"bugs/issue106"
|
2013-11-27 17:18:09 +00:00
|
|
|
|
|
|
|
]);
|