forked from yathit/ydn-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsTestDriver.conf
99 lines (97 loc) · 4.47 KB
/
jsTestDriver.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
server: http://localhost:4224
load:
- ../closure-library/closure/goog/base.js
- ../closure-library/closure/goog/string/string.js
- ../closure-library/closure/goog/useragent/useragent.js
- ../closure-library/closure/goog/useragent/product.js
- ../closure-library/closure/goog/debug/error.js
- ../closure-library/closure/goog/asserts/asserts.js
- ../closure-library/closure/goog/array/array.js
- ../closure-library/third_party/closure/goog/mochikit/async/deferred.js
- ../closure-library/third_party/closure/goog/mochikit/async/deferredlist.js
- ../ydn-base/js/ydn/async.js
- ../closure-library/closure/goog/object/object.js
- ../closure-library/closure/goog/structs/structs.js
- ../closure-library/closure/goog/structs/collection.js
- ../closure-library/closure/goog/iter/iter.js
- ../closure-library/closure/goog/structs/map.js
- ../closure-library/closure/goog/structs/set.js
- ../closure-library/closure/goog/debug/debug.js
- ../closure-library/closure/goog/debug/logrecord.js
- ../closure-library/closure/goog/debug/logbuffer.js
- ../closure-library/closure/goog/debug/logger.js
- ../ydn-base/js/ydn/json.js
- ../ydn-base/js/ydn/object.js
- ../closure-library/closure/goog/storage/errorcode.js
- ../closure-library/closure/goog/json/json.js
- ../closure-library/closure/goog/storage/mechanism/mechanism.js
- ../closure-library/closure/goog/storage/storage.js
- ../closure-library/closure/goog/storage/richstorage.js
- ../closure-library/closure/goog/storage/expiringstorage.js
- ../closure-library/closure/goog/crypt/crypt.js
- ../closure-library/closure/goog/crypt/arc4.js
- ../closure-library/closure/goog/crypt/hash.js
- ../closure-library/closure/goog/crypt/sha1.js
- ../closure-library/closure/goog/crypt/base64.js
- ../closure-library/closure/goog/storage/mechanism/iterablemechanism.js
- ../closure-library/closure/goog/storage/collectablestorage.js
- ../closure-library/closure/goog/storage/encryptedstorage.js
- ../ydn-db/js/ydn/db/rich_storage.js
- ../closure-library/closure/goog/disposable/idisposable.js
- ../closure-library/closure/goog/disposable/disposable.js
- ../closure-library/closure/goog/debug/entrypointregistry.js
- ../closure-library/closure/goog/debug/errorhandlerweakdep.js
- ../closure-library/closure/goog/events/browserfeature.js
- ../closure-library/closure/goog/events/event.js
- ../closure-library/closure/goog/events/eventtype.js
- ../closure-library/closure/goog/reflect/reflect.js
- ../closure-library/closure/goog/events/browserevent.js
- ../closure-library/closure/goog/events/eventwrapper.js
- ../closure-library/closure/goog/events/listener.js
- ../closure-library/closure/goog/events/events.js
- ../closure-library/closure/goog/events/eventtarget.js
- ../closure-library/closure/goog/timer/timer.js
- ../ydn-db/js/ydn/db/base/key.js
- ../ydn-db/js/ydn/db/conn/i_database.js
- ../ydn-db/js/ydn/db/conn/simple_storage.js
- ../ydn-db/js/ydn/db/conn/html5_storage.js
- ../ydn-db/js/ydn/db/base/base.js
- ../ydn-db/js/ydn/db/base/schema.js
- ../ydn-db/js/ydn/db/conn/indexed_db.js
- ../ydn-db/js/ydn/db/base/error.js
- ../closure-library/closure/goog/functions/functions.js
- ../ydn-db/js/ydn/db/conn/websql.js
- ../ydn-base/js/ydn/error.js
- ../ydn-db/js/ydn/db/conn/i_storage.js
- ../ydn-db/js/ydn/db/conn/storage.js
- ../ydn-db/js/ydn/db/tr/mutex.js
- ../ydn-db/js/ydn/db/tr/i_storage.js
- ../ydn-db/js/ydn/db/tr/tx_storage.js
- ../ydn-db/js/ydn/db/tr/storage.js
- ../ydn-db/js/ydn/db/base/key_range.js
- ../ydn-db/js/ydn/db/base/query.js
- ../ydn-db/js/ydn/db/io/crud_service.js
- ../ydn-db/js/ydn/db/req/request_executor.js
- ../ydn-db/js/ydn/db/req/indexed_db.js
- ../ydn-db/js/ydn/db/req/simple_store.js
- ../ydn-db/js/ydn/db/req/websql.js
- ../ydn-db/js/ydn/db/core/tx_storage.js
- ../ydn-db/js/ydn/db/core/i_storage.js
- ../ydn-db/js/ydn/db/io/query_service.js
- ../ydn-db/js/ydn/db/io/query.js
- ../ydn-db/js/ydn/db/io/key.js
- ../ydn-db/js/ydn/db/core/storage.js
- ../ydn-db/js/ydn/db/tx_storage.js
- ../ydn-db/js/ydn/db/i_storage.js
- ../ydn-db/js/ydn/db/storage.js
- ../closure-library/closure/goog/debug/relativetimeprovider.js
- ../closure-library/closure/goog/debug/formatter.js
- ../closure-library/closure/goog/debug/console.js
- ../ydn-db/js/test.js
test:
- test/base/KeyJstest.js
- test/base/QueryJstest.js
- test/html5/Html5DbJstest.js
- test/idb/IndexedDbJstest.js
- test/storage/StorageJstest.js
- test/websql/WebSqlJstest.js