1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

chore(ext/kv): disable ci tests on darwin (#18364)

https://github.com/denoland/deno/issues/18363
This commit is contained in:
Heyang Zhou 2023-03-23 03:46:26 +08:00 committed by GitHub
parent f9c8d98b77
commit a117d3d91e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,13 @@ import {
assertThrows,
} from "./test_util.ts";
let isCI: boolean;
try {
isCI = Deno.env.get("CI") !== undefined;
} catch {
isCI = true;
}
Deno.test({
name: "openKv :memory: no permissions",
permissions: {},
@ -36,6 +43,8 @@ Deno.test({
function dbTest(name: string, fn: (db: Deno.Kv) => Promise<void>) {
Deno.test({
name,
// https://github.com/denoland/deno/issues/18363
ignore: Deno.build.os === "darwin" && isCI,
async fn() {
const db: Deno.Kv = await Deno.openKv(
":memory:",