skip std module resolution test on webassembly target

This commit is contained in:
Techatrix 2023-05-09 19:00:16 +02:00
parent 6f0907bc16
commit 5cc7b1341e

View File

@ -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");