SPB Git

spb/zyquo-atlas Public License

The AI-native macOS web browser — every surface, intelligent.

Swift 75.2% JavaScript 22% Shell 2% Makefile 0.9%
584 B · 23 lines swift
Raw Blame History
1//2//  SmokeTests.swift3//  Zyquo Atlas4//5//  Author: Simon-Pierre Boucher6//  Mail: contact@spboucher.ai7//8//  Phase 1 smoke test — proves the test target links against ZyquoAtlas.9//  Real coverage (SSE parser, SecureKeyStore, ContentExtractor) arrives with10//  the ported provider layer and content pipeline in later phases.11//1213import Foundation14import Testing15@testable import ZyquoAtlas1617@Suite struct SmokeTests {18    @Test func harnessPlaceholderSucceeds() async {19        let status = await VerifyHarness.run(arguments: ["--verify"])20        #expect(status == 0)21    }22}23