Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@appifex/validate

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appifex/validate

Validation suite (Maestro, JUnit parser, semgrep security scan) for the appifex-dtc pipeline

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
2
Created
Source

@appifex/validate

Run all tests (Maestro UI + XCTest/JUnit unit) and get unified results.

Usage

import { validateAll, runMaestro, runUnitTests } from '@appifex/validate'
import { LocalRunner } from '@appifex/runner'

const runner = new LocalRunner(process.cwd())

// Run everything
const result = await validateAll(runner, {
  platform: 'swiftui',
  projectDir: './pet-app',
  flowDir: '.maestro/',
  testDir: 'Tests/',
  reportDir: '/tmp/maestro-report',
})

console.log(result.allPassed) // true/false
console.log(`UI: ${result.ui.passed}/${result.ui.total}`)
console.log(`Unit: ${result.unit.passed}/${result.unit.total}`)

// Or run individually
const uiResults = await runMaestro(runner, { flowDir: '.maestro/', projectDir: './app', reportDir: '/tmp/report' })
const unitResults = await runUnitTests(runner, { platform: 'swiftui', projectDir: './app', testDir: 'Tests/' })

Includes a JUNIT XML parser for Maestro, XCTest, and JUnit results.

Keywords

appifex

FAQs

Package last updated on 20 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts