Improve cypress logging output (#10845)
... by grouping together the output from some custom commands.
This commit is contained in:
parent
2d58489309
commit
9aade5a4d5
3 changed files with 81 additions and 4 deletions
45
cypress/support/log.ts
Normal file
45
cypress/support/log.ts
Normal file
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
Copyright 2023 The Matrix.org Foundation C.I.C.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
/// <reference types="cypress" />
|
||||
|
||||
declare global {
|
||||
// eslint-disable-next-line @typescript-eslint/no-namespace
|
||||
namespace Cypress {
|
||||
// secret undocumented options to Cypress.log
|
||||
interface LogConfig {
|
||||
/** begin a new log group; remember to match with `groupEnd` */
|
||||
groupStart: boolean;
|
||||
|
||||
/** end a log group that was previously started with `groupStart` */
|
||||
groupEnd: boolean;
|
||||
|
||||
/** suppress regular output: useful for closing a log group without writing another log line */
|
||||
emitOnly: boolean;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** collapse the last open log group in the Cypress UI
|
||||
*
|
||||
* Credit to https://j1000.github.io/blog/2022/10/27/enhanced_cypress_logging.html
|
||||
*/
|
||||
export function collapseLastLogGroup() {
|
||||
const openExpanders = window.top.document.getElementsByClassName("command-expander-is-open");
|
||||
const numExpanders = openExpanders.length;
|
||||
const el = openExpanders[numExpanders - 1];
|
||||
if (el) el.parentElement.click();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue