confirm-automated-testing.js — react Source File
Architecture documentation for confirm-automated-testing.js, a javascript file in the react codebase.
Entity Profile
Relationship Graph
Source Code
#!/usr/bin/env node
'use strict';
const clear = require('clear');
const {confirm} = require('../utils');
const theme = require('../theme');
const run = async () => {
clear();
console.log(
theme.caution(
'This script does not run any automated tests.' +
'You should run them manually before creating a "next" release.'
)
);
await confirm('Do you want to proceed?');
clear();
};
module.exports = run;
Domain
Subdomains
Functions
Source
Frequently Asked Questions
What does confirm-automated-testing.js do?
confirm-automated-testing.js is a source file in the react codebase, written in javascript. It belongs to the BabelCompiler domain, Optimization subdomain.
What functions are defined in confirm-automated-testing.js?
confirm-automated-testing.js defines 1 function(s): run.
Where is confirm-automated-testing.js in the architecture?
confirm-automated-testing.js is located at scripts/release/build-release-locally-commands/confirm-automated-testing.js (domain: BabelCompiler, subdomain: Optimization, directory: scripts/release/build-release-locally-commands).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free