This commit is contained in:
Caio Agiani 2022-02-01 16:09:41 -03:00 коммит произвёл GitHub
Родитель 3a5e8184b5
Коммит b6b60decdf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -11,7 +11,7 @@ if [[ ($1 == '--help') || ($1 == '-h') ]]; then
echo "Upload ZIP-PATH to BLOB-PATH in 'builds' container."
echo
echo "--check pass |--check| as a second parameter instead of a zip-path to check for"
echo " existance of BLOB-PATH"
echo " existence of BLOB-PATH"
echo
echo "NOTE: \$AZ_ACCOUNT_KEY (azure account name) and \$AZ_ACCOUNT_NAME (azure account name)"
echo "env variables are required to upload builds to CDN."

Просмотреть файл

@ -51,7 +51,7 @@ def test_navigates_to_login_page(page: Page) -> None:
* langs: java, js
- returns: <[APIResponseAssertions]>
Makes the assertion check for the opposite condition. For example, this code tests that the response status is not successfull:
Makes the assertion check for the opposite condition. For example, this code tests that the response status is not successful:
```js
await expect(response).not.toBeOK();

Просмотреть файл

@ -1172,7 +1172,7 @@ export module Protocol {
export type forcePseudoStateReturnValue = {
}
/**
* Change how layout context type changes are handled for nodes. When the new mode would observe nodes the frontend has not yet recieved, those nodes will be sent to the frontend immediately.
* Change how layout context type changes are handled for nodes. When the new mode would observe nodes the frontend has not yet received, those nodes will be sent to the frontend immediately.
*/
export type setLayoutContextTypeChangedModeParameters = {
/**

Просмотреть файл

@ -65,7 +65,7 @@ export function createFileMatcher(patterns: string | RegExp | (string | RegExp)[
if (re.test(filePath))
return true;
}
// Windows might still recieve unix style paths from Cygwin or Git Bash.
// Windows might still receive unix style paths from Cygwin or Git Bash.
// Check against the file url as well.
if (path.sep === '\\') {
const fileURL = url.pathToFileURL(filePath).href;

Просмотреть файл

@ -100,7 +100,7 @@ export class TestChildProcess {
if (r.exitCode)
throw new Error(`Process failed with exit code ${r.exitCode}`);
if (r.signal)
throw new Error(`Process recieved signal: ${r.signal}`);
throw new Error(`Process received signal: ${r.signal}`);
}
async waitForOutput(substring: string) {

Просмотреть файл

@ -216,7 +216,7 @@ class CLIMock {
this.waitForCallback = f;
if (timeout) {
setTimeout(() => {
r(new Error('Timed out waiting for text:\n' + text + '\n\nRecieved:\n' + this.text()));
r(new Error('Timed out waiting for text:\n' + text + '\n\nReceived:\n' + this.text()));
}, timeout);
}
});

Просмотреть файл

@ -63,7 +63,7 @@ test('should work and remove non-failures', async ({ runInlineTest }, testInfo)
expect(fs.existsSync(testInfo.outputPath('test-results', 'my-test-test-1-chromium'))).toBe(true);
expect(fs.existsSync(testInfo.outputPath('test-results', 'my-test-test-1-chromium-retry1'))).toBe(true);
// Last retry is successfull, so output dir should be removed.
// Last retry is successful, so output dir should be removed.
expect(fs.existsSync(testInfo.outputPath('test-results', 'my-test-test-1-chromium-retry2'))).toBe(false);
});