From 400c8a7cb9145a01e98aff31c7d0a4fb77f5d318 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Fri, 4 Oct 2024 19:20:54 +0200 Subject: [PATCH] fix: remove warnings of undefined modules when testing code generation --- test/code_generation_test.exs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/code_generation_test.exs b/test/code_generation_test.exs index 6dfcb9b9..e2e5a082 100644 --- a/test/code_generation_test.exs +++ b/test/code_generation_test.exs @@ -185,7 +185,9 @@ defmodule Protox.CodeGenerationTest do [ {:protox, path: "#{File.cwd!()}"}, {:dialyxir, "~> 1.0", only: [:test, :dev], runtime: false}, - {:credo, "~> 1.4", only: [:test, :dev], runtime: false} + {:credo, "~> 1.4", only: [:test, :dev], runtime: false}, + {:jason, "~> 1.2", optional: true}, + {:poison, "~> 4.0 or ~> 5.0 or ~> 6.0", optional: true} ] end end