This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Web test/benchmark setup refinements
Faster Firefox startup, improved logging
- Loading branch information
1 parent
538bcfe
commit d9ae798
Showing
4 changed files
with
118 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"browser.cache.memory.capacity": 65536, | ||
"browser.chrome.toolbar_style": 1, | ||
"browser.display.show_image_placeholders": false, | ||
"browser.display.use_document_colors": false, | ||
"browser.display.use_document_fonts": 0, | ||
"browser.display.use_system_colors": true, | ||
"browser.formfill.enable": false, | ||
"browser.helperApps.deleteTempFileOnExit": true, | ||
"browser.pocket.enabled": false, | ||
"browser.shell.checkDefaultBrowser": false, | ||
"browser.startup.homepage": "about:blank", | ||
"browser.startup.page": 0, | ||
"browser.tabs.forceHide": true, | ||
"browser.urlbar.autocomplete.enabled": false, | ||
"browser.urlbar.autoFill": false, | ||
"browser.urlbar.showPopup": false, | ||
"browser.urlbar.showSearch": false, | ||
"content.notify.interval": 500000, | ||
"content.notify.ontimer": true, | ||
"content.switch.threshold": 250000, | ||
"extensions.checkCompatibility": false, | ||
"extensions.checkUpdateSecurity": false, | ||
"extensions.update.autoUpdateEnabled": false, | ||
"extensions.update.enabled": false, | ||
"general.startup.browser": false, | ||
"loop.enabled": false, | ||
"network.http.pipelining.maxrequests": 8, | ||
"network.http.pipelining": true, | ||
"network.http.proxy.pipelining": true, | ||
"permissions.default.image": 2, | ||
"plugin.default_plugin_disabled": false, | ||
"reader.parse-on-load.enabled": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type { Transform } from '../src/transformer'; | ||
|
||
declare global { | ||
const enketo: { | ||
transformer: { | ||
transform: Transform; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters