Fixed a todo in test_bookmark_sharing, still more left to do as jono's modifications to the bookmark sharing API change.

This commit is contained in:
Atul Varma 2008-06-30 19:27:39 -07:00
Родитель 5a356c8855
Коммит 6f5c49a7f2
1 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -82,12 +82,18 @@ function run_test() {
let username = "rusty";
let engine = makeBookmarksEngine();
let shareManager = engine._sharing;
function setupShare(cb) {
// TODO: Passing in folderToShare won't work at the time of writing
// this because folderToShare is expected to be a DOM node, not a
// Places ID.
shareManager._share.async( shareManager, cb, folderToShare, "jonas" );
}
/*
// TODO async function can't be called like this, call it from
// an async callback thingy in SyncTestingInfrastructure.
shareManager._share.async( shareManager, null, folderToShare, "jonas" );
syncTesting.runAsyncFunc("Share folder with Jonas", setupShare);
dump( "folderToShare = " + folderToShare + "\n");
// Get the server path from folder annotation...
@ -109,7 +115,7 @@ function run_test() {
{});
do_check_eq( a.length, 1); // should be just one
// TODO next look at its children:
*/
*/
}