fix(macos): stabilize node runtime + menu sessions

This commit is contained in:
Peter Steinberger
2026-01-07 19:42:22 +00:00
parent 8913bfbcd5
commit f10d1fd9ac
5 changed files with 68 additions and 23 deletions

View File

@@ -2,7 +2,7 @@ import Foundation
import Testing
@testable import Clawdbot
@Suite
@Suite(.serialized)
struct ClawdbotConfigFileTests {
@Test
func configPathRespectsEnvOverride() {

View File

@@ -2,7 +2,7 @@ import Foundation
import Testing
@testable import Clawdbot
@Suite struct GatewayEnvironmentTests {
@Suite(.serialized) struct GatewayEnvironmentTests {
@Test func semverParsesCommonForms() {
#expect(Semver.parse("1.2.3") == Semver(major: 1, minor: 2, patch: 3))
#expect(Semver.parse("v2.0.0") == Semver(major: 2, minor: 0, patch: 0))