blob: be53a5a7e1c5a088be659974982f4912b71b9120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
add_task(async function init() {
const testCases = await require_module(
"dom/fs/test/common/test_syncAccessHandle.js"
);
Object.values(testCases).forEach(async testItem => {
// We can't shrink storage size in a mochitest.
if (testItem.name != "quotaTest") {
add_task(testItem);
}
});
});
|