Skip to content

Commit

Permalink
Skip basic development tests on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryuni committed Oct 7, 2024
1 parent 961144d commit c5a5e52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/db/test/basics.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('astro:db', () => {
});
});

describe('development', () => {
describe({ skip: process.platform === 'darwin' }, 'development', () => {
let devServer;

before(async () => {
Expand Down Expand Up @@ -94,7 +94,7 @@ describe('astro:db', () => {
});
});

describe('development --remote', () => {
describe({ skip: process.platform === 'darwin' }, 'development --remote', () => {
let devServer;
let remoteDbServer;

Expand Down

0 comments on commit c5a5e52

Please sign in to comment.