From 0a0b1b5a6c8e78908b9f80cf18baaa0e0d9c0d66 Mon Sep 17 00:00:00 2001 From: Martin Probst Date: Fri, 25 Sep 2020 10:28:06 +0200 Subject: [PATCH] Fix the e2e_closure_test. By including the missing jsprovide.js in it. --- test/e2e_closure_test.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/test/e2e_closure_test.ts b/test/e2e_closure_test.ts index aefee5240..ed05729e9 100644 --- a/test/e2e_closure_test.ts +++ b/test/e2e_closure_test.ts @@ -30,18 +30,19 @@ describe('golden file tests', () => { 'src/closure_externs.js', 'third_party/tslib/externs.js', 'third_party/tslib/tslib.js', - 'test_files/fake_goog_reflect.js', 'test_files/augment/shim.js', + 'test_files/clutz_type_value.no_externs/type_value.js', 'test_files/clutz.no_externs/default_export.js', 'test_files/clutz.no_externs/some_name_space.js', 'test_files/clutz.no_externs/some_other.js', - 'test_files/clutz_type_value.no_externs/type_value.js', - 'test_files/declare/shim.js', 'test_files/declare_export_dts/shim.js', - 'test_files/import_from_goog.no_externs/closure_Module.js', + 'test_files/declare/shim.js', + 'test_files/export_equals.shim/shim.js', + 'test_files/fake_goog_reflect.js', + 'test_files/import_by_path.no_externs/jsprovides.js', 'test_files/import_from_goog.no_externs/closure_LegacyModule.js', + 'test_files/import_from_goog.no_externs/closure_Module.js', 'test_files/import_from_goog.no_externs/closure_OtherModule.js', - 'test_files/export_equals.shim/shim.js', 'test_files/type_propaccess.no_externs/nested_clazz.js', ); const externs = tests.map(t => t.externsPath()).filter(fs.existsSync);