Skip to content

Commit

Permalink
fix(cypress): use correct label to reference plugins/base.js (#2977)
Browse files Browse the repository at this point in the history
Fixes #2976
  • Loading branch information
alexeagle authored Sep 27, 2021
1 parent 6f97a7c commit 6acec9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Cypress.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Defaults to `False`

(*<a href="https://bazel.build/docs/build-ref.html#labels">Label</a>*): Your cypress plugin file. See https://docs.cypress.io/guides/tooling/plugins-guide

Defaults to `@npm//@bazel/cypress:internal/plugins/base.js`
Defaults to `@npm//@bazel/cypress/internal:plugins/base.js`

<h4 id="cypress_web_test-srcs">srcs</h4>

Expand Down
2 changes: 1 addition & 1 deletion packages/cypress/internal/cypress_web_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ATTRS = dict(
default = Label("@build_bazel_rules_nodejs//packages/cypress/internal:run-cypress.js"),
),
plugin_file = attr.label(
default = Label("@build_bazel_rules_nodejs//packages/cypress:internal/plugins/base.js"),
default = Label("@build_bazel_rules_nodejs//packages/cypress/internal:plugins/base.js"),
allow_single_file = True,
doc = "Your cypress plugin file. See https://docs.cypress.io/guides/tooling/plugins-guide",
),
Expand Down

0 comments on commit 6acec9d

Please sign in to comment.