From 5cc7b1341e62a5cdb5d03ad55974210f0f787349 Mon Sep 17 00:00:00 2001 From: Techatrix <19954306+Techatrix@users.noreply.github.com> Date: Tue, 9 May 2023 19:00:16 +0200 Subject: [PATCH] skip std module resolution test on webassembly target --- tests/lsp_features/semantic_tokens.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lsp_features/semantic_tokens.zig b/tests/lsp_features/semantic_tokens.zig index 95ff282..567af1c 100644 --- a/tests/lsp_features/semantic_tokens.zig +++ b/tests/lsp_features/semantic_tokens.zig @@ -197,6 +197,7 @@ test "semantic tokens - operators" { } test "semantic tokens - field access" { + if (builtin.target.isWasm()) return error.SkipZigTest; // this will make sure that the std module can be resolved try testSemanticTokens( \\const std = @import("std");