std.crypto.CertificateBundle: disable test on WASI

This commit is contained in:
Andrew Kelley 2022-12-21 16:16:31 -07:00
parent 7ed7bd247e
commit 22db1e166a

View File

@ -448,7 +448,9 @@ const MapContext = struct {
}
};
test {
test "scan for OS-provided certificates" {
if (builtin.os.tag == .wasi) return error.SkipZigTest;
var bundle: CertificateBundle = .{};
defer bundle.deinit(std.testing.allocator);