aboutsummaryrefslogtreecommitdiff
BranchCommit messageAuthorAge
build-sysAllow testing behavior to be customizedjahoti3 years
jahotiSupport tests outside the source directoryjahoti3 years
jahoti-updateAdd build support for update URLsjahoti3 years
koszkobump version to 2.0.1Wojtek Kosior2 years
masterbump version to 2.0.1Wojtek Kosior2 years
nickAdd default repository to default settingsjahoti3 years
 
TagDownloadAuthorAge
v2.0.1browser-extension-2.0.1.tar.gz  browser-extension-2.0.1.zip  Wojtek Kosior2 years
v2.0browser-extension-2.0.tar.gz  browser-extension-2.0.zip  Wojtek Kosior2 years
v2.0-beta1browser-extension-2.0-beta1.tar.gz  browser-extension-2.0-beta1.zip  Wojtek Kosior3 years
v1.0browser-extension-1.0.tar.gz  browser-extension-1.0.zip  Wojtek Kosior3 years
v1.0-beta3browser-extension-1.0-beta3.tar.gz  browser-extension-1.0-beta3.zip  Wojtek Kosior3 years
v1.0-beta2browser-extension-1.0-beta2.tar.gz  browser-extension-1.0-beta2.zip  Wojtek Kosior3 years
v1.0-beta1browser-extension-1.0-beta1.tar.gz  browser-extension-1.0-beta1.zip  Wojtek Kosior3 years
 
AgeCommit messageAuthor
2021-09-15Add default repository to default settingsnickjahoti
2021-09-14bump version to 0.1Wojtek Kosior
2021-09-14use default settings that only contain a demo script (the rest is available t...Wojtek Kosior
2021-09-13rename the extension to "Haketilo"Wojtek Kosior
2021-09-11added missing line break in options pageWojtek Kosior
2021-09-10disable service workers when scripts are blockedWojtek Kosior
2021-09-10Make it impossible to check "Allow native scripts" for pages with payload.Wojtek Kosior
2021-09-10limit allowed pattern lengthsWojtek Kosior
2021-09-09restore compatibility with IceCat 60Wojtek Kosior
2021-09-09simplify CSP handling...All page's CSP rules are now removed when a payload is to be injected. When there is no payload, CSP rules are not modified but only supplemented with Hachette's own. Wojtek Kosior
[...]
em.scm?id=506abddb99e02f824bff7ed7d7f7b37c4dafe0a7'>tests: Mock up http-fetch in import tests....This is a follow-up to commit 63773200d7ac68fcaee6efd9ffe8ea7aa3fafa38. * tests/gem.scm ("gem->guix-package"): Replace mock definition of "url-fetch" with "http-fetch". * tests/pypi.scm ("pypi->guix-package"): Add mock definition of "http-fetch". Ricardo Wurmus 2016-08-28import: Importers return prefixed licenses....* guix/import/utils.scm (define-module): Import licenses with license: prefix. (string->licenses): Use prefixed licenses. (license->symbol): Return symbols with the prefix license:. * guix/tests/pypi.scm (pypi->guix-package): Update test cases. * guix/tests/gem.scm (gem->guix-package): Update test case. David Craven 2016-04-03build: Add a Guile custom test driver using SRFI-64....Before that '.log' files for scheme tests were fragmented and not included in test-suite.log. This unifies the semantics of SRFI-64 API with Automake test suite. * build-aux/test-driver.scm: New file. * Makefile.am (SCM_LOG_DRIVER, AM_SCM_LOG_DRIVER_FLAGS): New variables. (SCM_LOG_COMPILER, AM_SCM_LOG_FLAGS): Delete variables. (AM_TESTS_ENVIRONMENT): Set GUILE_AUTO_COMPILE to 0. * test-env.in: Silence guix-daemon. * doc/guix.texi (Running the Test Suite): Describe how to display the detailed results. Bug reports require only 'test-suite.log' file. * tests/base32.scm, tests/build-utils.scm, tests/builders.scm, tests/challenge.scm, tests/cpan.scm, tests/cpio.scm, tests/cran.scm, tests/cve.scm, tests/derivations.scm, tests/elpa.scm, tests/file-systems.scm, tests/gem.scm, tests/gexp.scm, tests/gnu-maintenance.scm, tests/grafts.scm, tests/graph.scm, tests/gremlin.scm, tests/hackage.scm, tests/hash.scm, tests/import-utils.scm, tests/lint.scm, tests/monads.scm, tests/nar.scm, tests/packages.scm, tests/pk-crypto.scm, tests/pki.scm, tests/profiles.scm, tests/publish.scm, tests/pypi.scm, tests/records.scm, tests/scripts-build.scm, tests/scripts.scm, tests/services.scm, tests/sets.scm, tests/size.scm, tests/snix.scm, tests/store.scm, tests/substitute.scm, tests/syscalls.scm, tests/system.scm, tests/ui.scm, tests/union.scm, tests/upstream.scm, tests/utils.scm: Don't exit at the end of test groups. * tests/containers.scm: Likewise. Use 'test-skip' instead of exiting with error code 77. Mathieu Lirzin