We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4bffd0 commit 5d472e5Copy full SHA for 5d472e5
src/_tests/index.test.ts
@@ -31,7 +31,11 @@ describe("tunnel", () => {
31
32
describe("service", () => {
33
const TOKEN = process.env.TUNNEL_TOKEN;
34
- if (TOKEN && ["darwin", "linux"].includes(process.platform)) {
+ if (
35
+ TOKEN &&
36
+ ["darwin", "linux"].includes(process.platform) &&
37
+ !(process.platform === "linux" && process.getuid?.() !== 0)
38
+ ) {
39
beforeAll(() => {
40
if (service.exists()) {
41
service.uninstall();
0 commit comments