Skip to content

Commit

Permalink
Merge pull request #67 from joomcode/fix/default-charset-encoding
Browse files Browse the repository at this point in the history
fix: default encoding in `Charset` TestCafe class
  • Loading branch information
uid11 authored Feb 28, 2024
2 parents dcbc73a + 3bf9883 commit e9a9c68
Show file tree
Hide file tree
Showing 31 changed files with 363 additions and 229 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ rules:
- ':not(MethodDefinition, Property) > FunctionExpression'
no-shadow: off
no-underscore-dangle: [error, {allow: [_onConfigureResponse]}]
no-unused-expressions: off
no-useless-constructor: off
no-use-before-define: off
no-void: off
Expand Down Expand Up @@ -199,7 +200,12 @@ rules:
'@typescript-eslint/no-namespace': [error, {allowDeclarations: true}]
'@typescript-eslint/no-shadow': error
'@typescript-eslint/no-unnecessary-boolean-literal-compare': off
'@typescript-eslint/no-unnecessary-qualifier': error
'@typescript-eslint/no-unsafe-unary-minus': error
'@typescript-eslint/no-use-before-define': error
'@typescript-eslint/no-unused-expressions': error
'@typescript-eslint/no-useless-empty-export': error
'@typescript-eslint/parameter-properties': error
'@typescript-eslint/quotes': [error, single, {avoidEscape: true}]
'@typescript-eslint/sort-type-constituents': [error, {checkIntersections: false}]
settings:
Expand Down
1 change: 1 addition & 0 deletions autotests/configurator/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ export type {
MapLogPayloadInLogFile,
MapLogPayloadInReport,
Pack,
SkipTests,
TestMeta,
} from './types';
2 changes: 1 addition & 1 deletion autotests/configurator/skipTests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {SkipTests} from './types/skipTests';
import type {SkipTests} from 'autotests/configurator';

/**
* Get array of groups of skipped tests, grouped by skip reason.
Expand Down
1 change: 1 addition & 0 deletions autotests/configurator/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ export type {
MapLogPayloadInReport,
Pack,
} from './packSpecific';
export type {SkipTests} from './skipTests';
export type {TestMeta} from './testMeta';
8 changes: 7 additions & 1 deletion autotests/pageObjects/components/Input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ export class Input {
*/
readonly input: Selector;

constructor(private readonly name: string) {
/**
* Name of input element.
*/
private readonly name: string;

constructor(name: string) {
this.name = name;
this.input = inputSelector(this.name);
}

Expand Down
158 changes: 79 additions & 79 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e9a9c68

Please sign in to comment.