You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running tests, the Algoliax library is making real Algolia API calls instead of using the mock server. This happens because the library is being compiled in production mode (prod) even during test execution.
Current Behavior
Library sends requests to https://.algolia.net/1/indexes/... during tests
Expected to use mock server URLs (http://localhost:8002/...) in test environment
Added debug logging shows Compiling in environment: prod during compilation
Expected Behavior
Library should compile in test mode when running tests
Should use mock server URLs in test environment as defined in the if Mix.env() == :test block
Technical Details
The issue appears to be in the compilation process. The environment check in lib/algoliax/routes.ex is not working as expected:
Thanks for the heads up! It is likely related to Mix.env being evaluated during build time and not runtime, meaning the value is passed during our build, not during your runtime.
Problem
When running tests, the Algoliax library is making real Algolia API calls instead of using the mock server. This happens because the library is being compiled in production mode (
prod
) even during test execution.Current Behavior
https://.algolia.net/1/indexes/...
during testshttp://localhost:8002/...
) in test environmentCompiling in environment: prod
during compilationExpected Behavior
if Mix.env() == :test
blockTechnical Details
The issue appears to be in the compilation process. The environment check in
lib/algoliax/routes.ex
is not working as expected:Debug Attempt
I added debug logging in
lib/algoliax/routes.ex
to verify the compilation environment:The output confirmed the issue:
Steps to Reproduce
Environment
The text was updated successfully, but these errors were encountered: