generated from bazel-contrib/rules-template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Move tests to e2e/workspace folder (#63)
- Loading branch information
Showing
19 changed files
with
1,274 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Import Aspect bazelrc presets | ||
import ../../.aspect/bazelrc/bazel7.bazelrc | ||
import ../../.aspect/bazelrc/convenience.bazelrc | ||
import ../../.aspect/bazelrc/correctness.bazelrc | ||
import ../../.aspect/bazelrc/debug.bazelrc | ||
import ../../.aspect/bazelrc/javascript.bazelrc | ||
import ../../.aspect/bazelrc/performance.bazelrc | ||
|
||
### YOUR PROJECT SPECIFIC OPTIONS GO HERE ### | ||
|
||
# Load any settings & overrides specific to the current user from `.aspect/bazelrc/user.bazelrc`. | ||
# This file should appear in `.gitignore` so that settings are not shared with team members. This | ||
# should be last statement in this config so the user configuration is able to overwrite flags from | ||
# this file. See https://bazel.build/configure/best-practices#bazelrc-file. | ||
try-import ../../.aspect/bazelrc/user.bazelrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,6 @@ | ||
"""Provides a simple way to test your rules as an external workspace. | ||
Add a basic smoke-test target below. | ||
""" | ||
|
||
load("@bazel_skylib//rules:build_test.bzl", "build_test") | ||
# load("aspect_rules_cypress//cypress:defs.bzl", "...") | ||
load("@npm//:defs.bzl", "npm_link_all_packages") | ||
|
||
# Replace with a usage of your rule/macro | ||
filegroup(name = "empty") | ||
|
||
build_test( | ||
name = "smoke_test", | ||
targets = [ | ||
# targets you add above | ||
":empty", | ||
], | ||
) | ||
npm_link_all_packages(name = "node_modules") |
Oops, something went wrong.