diff --git a/unit_tests/falco/app/actions/test_load_config.cpp b/unit_tests/falco/app/actions/test_load_config.cpp index b9591e3aa5f..0a0e78f3d24 100644 --- a/unit_tests/falco/app/actions/test_load_config.cpp +++ b/unit_tests/falco/app/actions/test_load_config.cpp @@ -18,7 +18,7 @@ limitations under the License. #include "app_action_helpers.h" #include "falco_test_var.h" - +#ifndef __EMSCRIPTEN__ TEST(ActionLoadConfig, check_engine_config_is_correctly_parsed) { falco::app::state s = {}; @@ -195,3 +195,4 @@ TEST(ActionLoadConfig, check_override_command_line_gvisor) EXPECT_EQ(s.config->m_cpus_for_each_syscall_buffer, 3); EXPECT_TRUE(s.config->m_syscall_drop_failed_exit); } +#endif