Skip to content

Commit

Permalink
Ensure third party files are available for browser testing (#9323)
Browse files Browse the repository at this point in the history
Co-authored-by: Diego Molina <[email protected]>
  • Loading branch information
pujagani and diemol authored Mar 23, 2021
1 parent 995d897 commit 64447d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions java/client/test/org/openqa/selenium/firefox/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ java_test_suite(
tags = [
"requires-network",
],
data = [
"//third_party/firebug:firebug-1.5.0-fx.xpi",
"//third_party/firebug:mooltipass-1.1.87.xpi",
],
deps = [
"//java/client/src/org/openqa/selenium/firefox",
"//java/client/src/org/openqa/selenium/remote",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ public void shouldInstallExtensionFromZip() {
}

@Test
@Ignore("Need to figure out why files are not showing up")
public void shouldInstallWebExtensionFromZip() {
profile.addExtension(InProject.locate(MOOLTIPASS_PATH).toFile());
File profileDir = profile.layoutOnDisk();
Expand All @@ -170,7 +169,6 @@ public void shouldInstallWebExtensionFromZip() {
}

@Test
@Ignore("Need to figure out why files are not showing up")
public void shouldInstallExtensionFromDirectory() throws IOException {
File extension = InProject.locate(FIREBUG_PATH).toFile();
File unzippedExtension = Zip.unzipToTempDir(new FileInputStream(extension), "unzip", "stream");
Expand All @@ -181,7 +179,6 @@ public void shouldInstallExtensionFromDirectory() throws IOException {
}

@Test
@Ignore("Need to figure out why files are not showing up")
public void shouldInstallWebExtensionFromDirectory() throws IOException {
File extension = InProject.locate(MOOLTIPASS_PATH).toFile();
File unzippedExtension = Zip.unzipToTempDir(new FileInputStream(extension), "unzip", "stream");
Expand Down
1 change: 0 additions & 1 deletion java/private/suite.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ def java_selenium_test_suite(
size = None,
test_identifiers = ["Test.java"],
deps = None,
data = [],
jvm_flags = [],
tags = [],
**kwargs):
Expand Down

0 comments on commit 64447d4

Please sign in to comment.