Skip to content

Commit

Permalink
Move tools/jest into js/jest (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zemnmez committed May 15, 2022
1 parent 50b6561 commit a2ac3cf
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tools/jest/jest.bzl → js/jest/rules.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def jest_test(name, srcs, deps = [], jest_config = "//:jest.ts.config.js", link_
for src in srcs:
templated_args.extend(["--runTestsByPath", "$(rootpath %s)" % src])

data = [jest_config] + srcs + deps + ["//tools/jest:jest_reporter_js"]
data = [jest_config] + srcs + deps + ["//js/jest:jest_reporter_js"]
_jest_test(
name = name,
data = data,
Expand Down
2 changes: 1 addition & 1 deletion rules.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("//tools/jest:jest.bzl", _jest_test = "jest_test")
load("//js/jest:rules.bzl", _jest_test = "jest_test")
load("//go/fmt:rules.bzl", _test_go_fmt = "test_go_fmt")
load("@io_bazel_rules_go//go:def.bzl", _go_binary = "go_binary", _go_library = "go_library", _go_test = "go_test")
load("@npm//@bazel/typescript:index.bzl", _ts_config = "ts_config", _ts_project = "ts_project")
Expand Down

0 comments on commit a2ac3cf

Please sign in to comment.