| Index: mojo/edk/js/test/run_js_integration_tests.cc
|
| diff --git a/mojo/edk/js/test/run_js_integration_tests.cc b/mojo/edk/js/test/run_js_integration_tests.cc
|
| index 00d3e96d368144c36c72d9172c45980bd4f6376b..f3eb936f3fbf8d09bc38a1ca9f0fbf03f83aba54 100644
|
| --- a/mojo/edk/js/test/run_js_integration_tests.cc
|
| +++ b/mojo/edk/js/test/run_js_integration_tests.cc
|
| @@ -45,14 +45,22 @@ void RunTest(std::string test) {
|
| gin::RunTestFromFile(path, &delegate, false);
|
| }
|
|
|
| -TEST(JSTest, connection) {
|
| +TEST(JSTest, Connection) {
|
| RunTest("connection_tests.js");
|
| }
|
|
|
| -TEST(JSTest, sample_service) {
|
| +TEST(JSTest, SampleService) {
|
| RunTest("sample_service_tests.js");
|
| }
|
|
|
| +TEST(JSTest, InterfacePtr) {
|
| + RunTest("interface_ptr_tests.js");
|
| +}
|
| +
|
| +TEST(JSTest, Binding) {
|
| + RunTest("binding_tests.js");
|
| +}
|
| +
|
| } // namespace
|
| } // namespace js
|
| } // namespace edk
|
|
|