Showing 17 of 33 total issues
File NetworkRequest.ts
has 606 lines of code (exceeds 500 allowed). Consider refactoring. Open
import { CookieParser } from './CookieParser';
import { NetworkCookie } from './NetworkCookie';
import { StringUtils } from '../utils/StringUtils';
import type { RequestExtraInfo, ResponseExtraInfo } from './ExtraInfoBuilder';
import type { Header, Param, QueryString } from 'har-format';
Function buildTimings
has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring. Open
private buildTimings(): Timings {
const timing = this.request.timing;
const issueTime: number = this.request.issueTime;
const startTime: number = this.request.startTime;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function buildTimings
has 69 lines of code (exceeds 25 allowed). Consider refactoring. Open
private buildTimings(): Timings {
const timing = this.request.timing;
const issueTime: number = this.request.issueTime;
const startTime: number = this.request.startTime;
Function setupNodeEvents
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
setupNodeEvents(
on: Cypress.PluginEvents,
_: Cypress.PluginConfigOptions
): void {
install(on);
Function updateNetworkRequestWithResponse
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
private updateNetworkRequestWithResponse(
networkRequest: NetworkRequest,
response: Protocol.Network.Response
): void {
if (response.url && networkRequest.url !== response.url) {
Function requestWillBeSent
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
public requestWillBeSent({
type,
loaderId,
initiator,
redirectResponse,
Function build
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
public async build(): Promise<Entry> {
let serverIPAddress: string = this.request.remoteAddress;
const portPositionInString: number = serverIPAddress.lastIndexOf(':');
Function updateNetworkRequestWithResponse
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
private updateNetworkRequestWithResponse(
networkRequest: NetworkRequest,
response: Protocol.Network.Response
): void {
if (response.url && networkRequest.url !== response.url) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function addExtraResponseInfo
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public addExtraResponseInfo(extraResponseInfo: ResponseExtraInfo): void {
this.responseHeaders = extraResponseInfo.responseHeaders;
if (extraResponseInfo.responseHeadersText) {
this.responseHeadersText = extraResponseInfo.responseHeadersText;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function escapeCharacters
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public static escapeCharacters(
str: string,
chars: string = '^[]{}()\\\\.$*+?|'
): string {
let foundChar = false;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function requestWillBeSent
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public requestWillBeSent({
type,
loaderId,
initiator,
redirectResponse,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function saveHar
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public async saveHar(options: SaveOptions): Promise<void> {
if (!this.supported) {
return;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this function. Open
return this.parseMultipartFormDataParameters(formData, boundary);
Function setupNodeEvents
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
setupNodeEvents(
on: Cypress.PluginEvents,
_: Cypress.PluginConfigOptions
): void {
install(on);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function parseSetCookie
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public parseSetCookie(setCookieHeader: string): NetworkCookie[] | undefined {
this._initialize(setCookieHeader);
for (let kv = this._extractKeyValue(); kv; kv = this._extractKeyValue()) {
if (this._lastCookie) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function parseFormParameters
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private async parseFormParameters(): Promise<Param[]> {
if (
this.requestContentType?.match(
/^application\/x-www-form-urlencoded\s*(;.*)?$/i
)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function parseCookie
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public parseCookie(cookieHeader: string): NetworkCookie[] | undefined {
this._initialize(cookieHeader);
for (let kv = this._extractKeyValue(); kv; kv = this._extractKeyValue()) {
if (kv.key.charAt(0) === '$' && this._lastCookie) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"