File collection-test.ts
has 488 lines of code (exceeds 250 allowed). Consider refactoring.
import { collection, create, hasClass, text } from 'ember-cli-page-object';
import withIteratorSymbolDefined from '../../../helpers/with-iterator-symbol-defined';
import { setupRenderingTest, TestContext } from '../../../helpers';
import { module, test } from 'qunit';
File value-test.ts
has 448 lines of code (exceeds 250 allowed). Consider refactoring.
import { create, value } from 'ember-cli-page-object';
import { setupRenderingTest, TestContext } from '../../../helpers';
import { module, test } from 'qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
Function exports
has 114 lines of code (exceeds 25 allowed). Consider refactoring.
module.exports = async function () {
return {
usePnpm: true,
scenarios: [
{
File action-test.js
has 300 lines of code (exceeds 250 allowed). Consider refactoring.
import { module, test } from 'qunit';
import { create } from 'ember-cli-page-object';
import action from 'ember-cli-page-object/-private/action';
import { isPageObject } from 'ember-cli-page-object/-private/meta';
import { setAdapter, getAdapter } from 'ember-cli-page-object/adapters';
File actions-test.ts
has 285 lines of code (exceeds 250 allowed). Consider refactoring.
import 'qunit-dom';
import { run } from '@ember/runloop';
import { module, test } from 'qunit';
import { render } from '@ember/test-helpers';
File composition-test.ts
has 256 lines of code (exceeds 250 allowed). Consider refactoring.
import { setupRenderingTest } from '../../helpers';
import { test, module } from 'qunit';
import {
isPageObject,
getPageObjectDefinition,
Function buildObject
has 42 lines of code (exceeds 25 allowed). Consider refactoring.
function buildObject(node, blueprintKey, blueprint, defaultBuilder) {
let definition;
if (Array.isArray(blueprint)) {
Function keyPress
has 35 lines of code (exceeds 25 allowed). Consider refactoring.
keyPress: action(function (key, asyncOp) {
let exec = () => {
let result = this.expression;
let stack = this.stack;
let op = this.op;
Function writeDocsFile
has 34 lines of code (exceeds 25 allowed). Consider refactoring.
function writeDocsFile(srcPath, destDir, options) {
var filename = options.slug + '.md';
var destPath = path.join(destDir, filename);
Function massageMarkdown
has 32 lines of code (exceeds 25 allowed). Consider refactoring.
function massageMarkdown(markdown, options) {
var headerRegex = /^#{1,6} /;
var h2Regex = /^## (.*)$/;
var lines = markdown.split('\n');
var tableOfContents = ['### Methods\n'];
Function create
has 28 lines of code (exceeds 25 allowed). Consider refactoring.
export function create(definition = {}, options = {}) {
if (typeof definition === 'string') {
throw new Error('Definition can not be a string');
}
Function getter
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
export function getter(fn) {
if (typeof fn !== 'function') {
throw new Error('Argument passed to `getter` must be a function.');
}
Function proxyIfSupported
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
function proxyIfSupported(instance) {
if (window.Proxy) {
return new window.Proxy(instance, {
get: function (target, name) {
if (typeof name === 'number' || typeof name === 'string') {
Function attr
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
function attr(element, attributeName) {
const value = element.getAttribute(attributeName);
if (value) {
return value == null ? undefined : value;
Function getter
has 26 lines of code (exceeds 25 allowed). Consider refactoring.
export function getter(fn) {
if (typeof fn !== 'function') {
throw new Error('Argument passed to `getter` must be a function.');
}
Function writeDocsFile
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
function writeDocsFile(srcPath, destDir, options) {
var filename = options.slug + '.md';
var destPath = path.join(destDir, filename);
Function addValue
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
function addValue(
urlSearchParams,
key,
value,
parentKey = '',
Function getProperty
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
function getProperty(object, pathToProp) {
const pathSegments = pathToProp.split('.');
let parent = object;
let value;
Function addValue
has 5 arguments (exceeds 4 allowed). Consider refactoring.
urlSearchParams,
key,
value,
parentKey = '',
isArrayValue = false
Function keyPress
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
keyPress: action(function (key, asyncOp) {
let exec = () => {
let result = this.expression;
let stack = this.stack;
let op = this.op;