Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(containers): unexpected token "-" #7

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions containers/bring.test.w
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bring "." as c;

2 changes: 1 addition & 1 deletion containers/test/local-build.test.w
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ bring http;

let app = new containers.Workload(
name: "my-app",
image: "./my-app",
image: "./my_app",
port: 3000,
public: true,
);
Expand Down
4 changes: 2 additions & 2 deletions containers/test/microservices.test.w
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ bring expect;

let producer = new containers.Workload(
name: "producer",
image: "./microservices-producer",
image: "./microservices_producer",
port: 4000,
) as "producer";

let consumer = new containers.Workload(
name: "consumer",
image: "./microservices-consumer",
image: "./microservices_consumer",
port: 3000,
public: true,
env: {
Expand Down
File renamed without changes.
File renamed without changes.