mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 05:48:12 +00:00

LibWeb currently has no test suite or program. Let's change that :^) test-web is mostly a copy of test-js, but modified for LibWeb. test-web imports both LibJS/Tests/test-common.js and LibWeb/Test/test-common.js LibWeb's suite provides the ability to specify the page to load, what to do before the page is loaded, and what to do after it's loaded. This also provides a test of document.doctype and its close sibling document.compatMode. Currently, this isn't added to Lagom because of CodeGenerators.
13 lines
276 B
Text
13 lines
276 B
Text
{
|
|
"arrowParens": "avoid",
|
|
"bracketSpacing": true,
|
|
"endOfLine": "lf",
|
|
"insertPragma": false,
|
|
"printWidth": 100,
|
|
"quoteProps": "as-needed",
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"tabWidth": 4,
|
|
"trailingComma": "es5",
|
|
"useTabs": false
|
|
}
|