Compare commits

...

3 commits

Author SHA1 Message Date
Daniel Siepmann c07db5167f
Remove PHPUnit testdox output format
As this will hide errors which is not helpful during development.
2023-11-29 10:48:31 +01:00
Daniel Siepmann a271005b98
Enable new Firefox 120 privacy settings 2023-11-29 10:47:20 +01:00
Daniel Siepmann 6c93c36013
Allow Firefox to use configured default search engine 2023-11-29 10:46:22 +01:00
5 changed files with 8 additions and 26 deletions

View file

@ -167,8 +167,6 @@ in {
"lightweightThemes.usedThemes" = "[]";
"browser.urlbar.matchBuckets" = "general:5,suggestion:Infinity";
"browser.urlbar.placeholderName" = "DuckDuckGo";
"browser.urlbar.placeholderName.private" = "DuckDuckGo";
"browser.urlbar.resultBuckets" = "{\"children\":[{\"maxResultCount\":1,\"children\":[{\"group\":\"heuristicTest\"},{\"group\":\"heuristicExtension\"},{\"group\":\"heuristicSearchTip\"},{\"group\":\"heuristicOmnibox\"},{\"group\":\"heuristicUnifiedComplete\"},{\"group\":\"heuristicAutofill\"},{\"group\":\"heuristicTokenAliasEngine\"},{\"group\":\"heuristicFallback\"}]},{\"group\":\"extension\",\"maxResultCount\":5},{\"flexChildren\":true,\"children\":[{\"group\":\"general\",\"flex\":2},{\"flexChildren\":true,\"children\":[{\"flex\":2,\"group\":\"formHistory\"},{\"flex\":4,\"group\":\"remoteSuggestion\"},{\"flex\":0,\"group\":\"tailSuggestion\"}],\"flex\":1}]}]}";
"browser.urlbar.resultGroups" = "{\"children\":[{\"maxResultCount\":1,\"children\":[{\"group\":\"heuristicTest\"},{\"group\":\"heuristicExtension\"},{\"group\":\"heuristicSearchTip\"},{\"group\":\"heuristicOmnibox\"},{\"group\":\"heuristicEngineAlias\"},{\"group\":\"heuristicBookmarkKeyword\"},{\"group\":\"heuristicAutofill\"},{\"group\":\"heuristicPreloaded\"},{\"group\":\"heuristicTokenAliasEngine\"},{\"group\":\"heuristicFallback\"}]},{\"group\":\"extension\",\"availableSpan\":5},{\"flexChildren\":true,\"children\":[{\"group\":\"generalParent\",\"children\":[{\"availableSpan\":3,\"group\":\"inputHistory\"},{\"flexChildren\":true,\"children\":[{\"flex\":1,\"group\":\"remoteTab\"},{\"flex\":2,\"group\":\"general\"},{\"flex\":2,\"group\":\"aboutPages\"},{\"flex\":1,\"group\":\"preloaded\"}]},{\"group\":\"inputHistory\"}],\"flex\":2},{\"children\":[{\"flexChildren\":true,\"children\":[{\"flex\":2,\"group\":\"formHistory\"},{\"flex\":4,\"group\":\"remoteSuggestion\"}]},{\"group\":\"tailSuggestion\"}],\"flex\":1}]}]}";
"browser.urlbar.showSearchSuggestionsFirst" = false;
@ -278,6 +276,9 @@ in {
"pref.privacy.disable_button.tracking_protection_exceptions" = false;
"pref.privacy.disable_button.view_passwords" = false;
"app.shield.optoutstudies.enabled" = false;
"privacy.globalprivacycontrol.enabled" = true;
"privacy.globalprivacycontrol.was_ever_enabled" = true;
"privacy.donottrackheader.enabled" = true;
"privacy.resistFingerprinting" = false;
"privacy.firstparty.isolate" = true;

View file

@ -3,26 +3,12 @@ augroup reuterFolder
autocmd BufEnter **/microservices/cms/**/*.js :setlocal tabstop=2 shiftwidth=2
autocmd BufEnter **/reuter/**/Unit/** execute "call ReuterSetupPhpUnitUnit()"
autocmd BufEnter **/reuter/**/Functional/** execute "call ReuterSetupPhpUnitFunctional()"
autocmd BufEnter **/reuter/**/.git/COMMIT_EDITMSG let b:ale_gitcommit_gitlint_options = '-c general.contrib=contrib-title-conventional-commits'
augroup END
" As long as we use older phpunit which does not provider proper testdox output
function! ReuterSetupPhpUnitUnit()
let g:test#php#phpunit#options = {
\ 'file': '--testdox ',
\ 'nearest': '--testdox',
\}
endfunction
function! ReuterSetupPhpUnitFunctional()
let g:test#php#phpunit#options = {
\ 'file': '--testdox',
\ 'nearest': '--testdox',
\}
" let g:test#php#phpunit#options = {
" \ 'file': '--stop-on-error --stop-on-failure --testdox',
" \ 'nearest': '--testdox',
" \ 'file': '--stop-on-error --stop-on-failure',
" \}
endfunction

View file

@ -9,14 +9,14 @@ augroup END
function! SacSetupPhpUnitUnit()
let g:test#php#phpunit#options = {
\ 'file': '--configuration phpunit.unit.xml.dist --testdox',
\ 'nearest': '--configuration phpunit.unit.xml.dist --testdox',
\ 'file': '--configuration phpunit.unit.xml.dist',
\ 'nearest': '--configuration phpunit.unit.xml.dist',
\}
endfunction
function! SacSetupPhpUnitFunctional()
let g:test#php#phpunit#options = {
\ 'file': '--configuration phpunit.functional.xml.dist --testdox',
\ 'nearest': '--configuration phpunit.functional.xml.dist --testdox',
\ 'file': '--configuration phpunit.functional.xml.dist',
\ 'nearest': '--configuration phpunit.functional.xml.dist',
\}
endfunction

View file

@ -13,11 +13,6 @@ let g:test#php#codeception#options = {
\ 'file': '--env production --debug',
\}
let g:test#php#phpunit#options = {
\ 'nearest': '--testdox',
\ 'file': '--testdox',
\}
if !exists('g:test#php#codeception#suite')
let g:test#php#codeception#suite = 'acceptance'
endif

Binary file not shown.