Source code

Revision control

Copy as Markdown

Other Tools

/**
* Any copyright is dedicated to the Public Domain.
*/
add_task(async function init() {
const testCases = await require_module(
"dom/fs/test/common/test_writableFileStream.js"
);
Object.values(testCases).forEach(async testItem => {
// We can't shrink storage size in a mochitest.
if (testItem.name != "quotaTest") {
add_task(testItem);
}
});
});