tree: 571653c236a86db01391b262b488554220c9b62f [path history] [tgz]
  1. meta/
  2. BUILD.gn
  3. generate_web_runner_tests.gni
  4. METADATA.textproto
  5. mock_get.cc
  6. mock_get.h
  7. OWNERS
  8. README.md
  9. test_server.cc
  10. test_server.h
  11. web_runner_integration_tests.cc
src/chromium/web_runner_tests/README.md

web_runner_tests

Contains integration tests to ensure that Chromium is compatible with Fuchsia.

These actually test web_engine and are named this way for historical reasons.

Build the test

$ fx set <product>.<arch> --with //src/chromium/web_runner_tests:tests
$ fx build

If <product> does not include WebEngine by default, you will need to add it:

$ fx set <product>.<arch> --with //src/chromium/web_runner_tests:tests --with //src/chromium:web_engine
$ fx build

Run the test

To run all the tests, use this fx invocation:

$ fx test web_runner_tests

To run individual test suites, use these fx invocations:

fx test web_runner_tests -t -- --gtest_filter="WebRunnerIntegrationTest.*"

For more information about the individual tests, see their respective file comments.