Initial commit

Generated by create-expo-module 56.0.3.
This commit is contained in:
2026-06-21 12:06:37 +02:00
commit edb1d5fe82
45 changed files with 21561 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#!/usr/bin/env node
const { spawnSyncWithAutoShell } = require('./util');
const fs = require('fs');
const path = require('path');
const SUBTARGETS = ['plugin', 'cli', 'utils', 'scripts'];
let args = process.argv.slice(2);
// If the command is used like `yarn test plugin`, set the --rootDir option to the `plugin` directory
if (SUBTARGETS.includes(args[0])) {
const target = args[0];
const targetDir = path.join(process.cwd(), target);
const restArgs = args.slice(1);
args = ['--rootDir', target];
if (fs.existsSync(path.join(targetDir, 'jest.config.js'))) {
args.push('--config', `${target}/jest.config.js`);
}
args.push(...restArgs);
}
if (
process.stdout.isTTY &&
!process.env.CI &&
!process.env.EXPO_NONINTERACTIVE &&
!args.includes('--watch')
) {
args.push('--watch');
}
const result = spawnSyncWithAutoShell('jest', args, { stdio: 'inherit' });
process.exit(result.status ?? 0);