@skbkontur/playwright-react-ui-components 1.14.0-beta.2 → 1.14.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -116,7 +116,7 @@ var AutocompleteAssertions = /** @class */ (function (_super) {
116
116
  return __awaiter(this, void 0, void 0, function () {
117
117
  return __generator(this, function (_a) {
118
118
  switch (_a.label) {
119
- case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.autocomplete).toHaveFormattedValue(value, options)];
119
+ case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.autocomplete).toHaveFormattedValueEx(value, options)];
120
120
  case 1:
121
121
  _a.sent();
122
122
  return [2 /*return*/];
@@ -116,7 +116,7 @@ var InputAssertions = /** @class */ (function (_super) {
116
116
  return __awaiter(this, void 0, void 0, function () {
117
117
  return __generator(this, function (_a) {
118
118
  switch (_a.label) {
119
- case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.input).toHaveFormattedValue(value, options)];
119
+ case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.input).toHaveFormattedValueEx(value, options)];
120
120
  case 1:
121
121
  _a.sent();
122
122
  return [2 /*return*/];
@@ -116,7 +116,7 @@ var LabelAssertions = /** @class */ (function (_super) {
116
116
  return __awaiter(this, void 0, void 0, function () {
117
117
  return __generator(this, function (_a) {
118
118
  switch (_a.label) {
119
- case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.label).toHaveFormattedText(text, options)];
119
+ case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.label).toHaveFormattedTextEx(text, options)];
120
120
  case 1:
121
121
  _a.sent();
122
122
  return [2 /*return*/];
@@ -131,7 +131,7 @@ var LabelAssertions = /** @class */ (function (_super) {
131
131
  return __awaiter(this, void 0, void 0, function () {
132
132
  return __generator(this, function (_a) {
133
133
  switch (_a.label) {
134
- case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.label).toContainFormattedText(text, options)];
134
+ case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.label).toContainFormattedTextEx(text, options)];
135
135
  case 1:
136
136
  _a.sent();
137
137
  return [2 /*return*/];
@@ -116,7 +116,7 @@ var TokenAssertions = /** @class */ (function (_super) {
116
116
  return __awaiter(this, void 0, void 0, function () {
117
117
  return __generator(this, function (_a) {
118
118
  switch (_a.label) {
119
- case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.token).toHaveFormattedText(text, options)];
119
+ case 0: return [4 /*yield*/, (0, extensions_1.expect)(this.token).toHaveFormattedTextEx(text, options)];
120
120
  case 1:
121
121
  _a.sent();
122
122
  return [2 /*return*/];
@@ -0,0 +1,3 @@
1
+ import type { Label } from '../../components';
2
+ import type { TransformOptions } from '../../options';
3
+ export declare const toContainFormattedTextEx: (this: import("playwright/test").ExpectMatcherState, component: Label, args_0: string, args_1?: TransformOptions | undefined) => Promise<import("playwright/test").MatcherReturnType>;
@@ -36,10 +36,10 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
36
36
  }
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.toContainFormattedText = void 0;
39
+ exports.toContainFormattedTextEx = void 0;
40
40
  var extensions_1 = require("../../extensions");
41
41
  var createAsyncMatcher_1 = require("../createAsyncMatcher");
42
- exports.toContainFormattedText = (0, createAsyncMatcher_1.createComponentAsyncMatcher)('toContainFormattedText', function (component) { return component.rootLocator; }, function (_a, expected_1, options_1) { return __awaiter(void 0, [_a, expected_1, options_1], void 0, function (_b, expected, options) {
42
+ exports.toContainFormattedTextEx = (0, createAsyncMatcher_1.createComponentAsyncMatcher)('toContainFormattedTextEx', function (component) { return component.rootLocator; }, function (_a, expected_1, options_1) { return __awaiter(void 0, [_a, expected_1, options_1], void 0, function (_b, expected, options) {
43
43
  var expectation;
44
44
  var isNot = _b.isNot, locator = _b.locator;
45
45
  return __generator(this, function (_c) {
@@ -0,0 +1,3 @@
1
+ import type { TransformOptions } from '../../options';
2
+ import type { ToTextElementLocator } from './LocatorSymbols';
3
+ export declare const toHaveFormattedTextEx: (this: import("playwright/test").ExpectMatcherState, component: ToTextElementLocator, args_0: string, args_1?: TransformOptions | undefined) => Promise<import("playwright/test").MatcherReturnType>;
@@ -36,11 +36,11 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
36
36
  }
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.toHaveFormattedText = void 0;
39
+ exports.toHaveFormattedTextEx = void 0;
40
40
  var extensions_1 = require("../../extensions");
41
41
  var LocatorSymbols_1 = require("./LocatorSymbols");
42
42
  var createAsyncMatcher_1 = require("../createAsyncMatcher");
43
- exports.toHaveFormattedText = (0, createAsyncMatcher_1.createAsyncMatcher)('toHaveFormattedText', function (component) { return component[LocatorSymbols_1.toTextElementLocator](); }, function (_a, expected_1, options_1) { return __awaiter(void 0, [_a, expected_1, options_1], void 0, function (_b, expected, options) {
43
+ exports.toHaveFormattedTextEx = (0, createAsyncMatcher_1.createAsyncMatcher)('toHaveFormattedTextEx', function (component) { return component[LocatorSymbols_1.toTextElementLocator](); }, function (_a, expected_1, options_1) { return __awaiter(void 0, [_a, expected_1, options_1], void 0, function (_b, expected, options) {
44
44
  var expectation;
45
45
  var isNot = _b.isNot, locator = _b.locator;
46
46
  return __generator(this, function (_c) {
@@ -0,0 +1,3 @@
1
+ import type { TransformOptions } from '../../options';
2
+ import { type ToWithValueElementLocator } from './LocatorSymbols';
3
+ export declare const toHaveFormattedValueEx: (this: import("playwright/test").ExpectMatcherState, component: ToWithValueElementLocator, args_0: string, args_1?: TransformOptions | undefined) => Promise<import("playwright/test").MatcherReturnType>;
@@ -36,11 +36,11 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
36
36
  }
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.toHaveFormattedValue = void 0;
39
+ exports.toHaveFormattedValueEx = void 0;
40
40
  var extensions_1 = require("../../extensions");
41
41
  var LocatorSymbols_1 = require("./LocatorSymbols");
42
42
  var createAsyncMatcher_1 = require("../createAsyncMatcher");
43
- exports.toHaveFormattedValue = (0, createAsyncMatcher_1.createAsyncMatcher)('toHaveFormattedValue', function (component) { return component[LocatorSymbols_1.toValueElementLocator](); }, function (_a, expected_1, options_1) { return __awaiter(void 0, [_a, expected_1, options_1], void 0, function (_b, expected, options) {
43
+ exports.toHaveFormattedValueEx = (0, createAsyncMatcher_1.createAsyncMatcher)('toHaveFormattedValueEx', function (component) { return component[LocatorSymbols_1.toValueElementLocator](); }, function (_a, expected_1, options_1) { return __awaiter(void 0, [_a, expected_1, options_1], void 0, function (_b, expected, options) {
44
44
  var expectation;
45
45
  var isNot = _b.isNot, locator = _b.locator;
46
46
  return __generator(this, function (_c) {
@@ -13,7 +13,10 @@ declare const matchers: {
13
13
  }, args_1?: import("..").ValueOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
14
14
  readonly toHaveTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string | RegExp | readonly (string | RegExp)[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
15
15
  readonly toHaveCountEx: (this: import("@playwright/test").ExpectMatcherState, component: import("..").ComponentList<any>, args_0: number, args_1?: import("..").CountOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
16
+ readonly toHaveFormattedValueEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToWithValueElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
17
+ readonly toHaveFormattedTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
16
18
  readonly toContainTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string | RegExp | readonly (string | RegExp)[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
19
+ readonly toContainFormattedTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Label, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
17
20
  readonly toBeAutoMode: (this: import("@playwright/test").ExpectMatcherState, component: import("..").FxInput, args_0?: import("..").VisibleOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
18
21
  readonly toBeUnchecked: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToBeCheckableElementLocator, args_0?: import("..").CheckedOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
19
22
  readonly toBeActiveTab: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Tab, args_0?: import("..").AttributeOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
@@ -35,8 +38,6 @@ declare const matchers: {
35
38
  readonly toHaveActivePage: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Paging, args_0: number, args_1?: {
36
39
  timeout?: number;
37
40
  } | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
38
- readonly toHaveFormattedValue: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToWithValueElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
39
- readonly toHaveFormattedText: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
40
41
  readonly toContainItems: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToHaveItemsElementLocator, args_0: string[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
41
42
  readonly toContainItem: (this: import("@playwright/test").ExpectMatcherState, component: import("..").MenuComponent & import("./component/LocatorSymbols").ToContainItemElementLocator, args_0: string, args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
42
43
  readonly toContainTokens: (this: import("@playwright/test").ExpectMatcherState, component: import("..").TokenInput, args_0: string[], args_1?: {
@@ -44,7 +45,6 @@ declare const matchers: {
44
45
  } | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
45
46
  readonly toContainTabs: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Tabs, args_0: string[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
46
47
  readonly toContainSelectValue: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Select, args_0: string | RegExp | readonly (string | RegExp)[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
47
- readonly toContainFormattedText: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Label, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
48
48
  readonly toContainUploadedFiles: (this: import("@playwright/test").ExpectMatcherState, component: import("..").FileUploader, args_0: string[], args_1?: {
49
49
  timeout?: number;
50
50
  } | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
@@ -65,7 +65,10 @@ export declare const componentMatchers: import("@playwright/test").Expect<{
65
65
  }, args_1?: import("..").ValueOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
66
66
  readonly toHaveTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string | RegExp | readonly (string | RegExp)[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
67
67
  readonly toHaveCountEx: (this: import("@playwright/test").ExpectMatcherState, component: import("..").ComponentList<any>, args_0: number, args_1?: import("..").CountOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
68
+ readonly toHaveFormattedValueEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToWithValueElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
69
+ readonly toHaveFormattedTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
68
70
  readonly toContainTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string | RegExp | readonly (string | RegExp)[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
71
+ readonly toContainFormattedTextEx: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Label, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
69
72
  readonly toBeAutoMode: (this: import("@playwright/test").ExpectMatcherState, component: import("..").FxInput, args_0?: import("..").VisibleOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
70
73
  readonly toBeUnchecked: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToBeCheckableElementLocator, args_0?: import("..").CheckedOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
71
74
  readonly toBeActiveTab: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Tab, args_0?: import("..").AttributeOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
@@ -87,8 +90,6 @@ export declare const componentMatchers: import("@playwright/test").Expect<{
87
90
  readonly toHaveActivePage: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Paging, args_0: number, args_1?: {
88
91
  timeout?: number;
89
92
  } | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
90
- readonly toHaveFormattedValue: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToWithValueElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
91
- readonly toHaveFormattedText: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToTextElementLocator, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
92
93
  readonly toContainItems: (this: import("@playwright/test").ExpectMatcherState, component: import("./component/LocatorSymbols").ToHaveItemsElementLocator, args_0: string[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
93
94
  readonly toContainItem: (this: import("@playwright/test").ExpectMatcherState, component: import("..").MenuComponent & import("./component/LocatorSymbols").ToContainItemElementLocator, args_0: string, args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
94
95
  readonly toContainTokens: (this: import("@playwright/test").ExpectMatcherState, component: import("..").TokenInput, args_0: string[], args_1?: {
@@ -96,7 +97,6 @@ export declare const componentMatchers: import("@playwright/test").Expect<{
96
97
  } | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
97
98
  readonly toContainTabs: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Tabs, args_0: string[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
98
99
  readonly toContainSelectValue: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Select, args_0: string | RegExp | readonly (string | RegExp)[], args_1?: import("..").TextOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
99
- readonly toContainFormattedText: (this: import("@playwright/test").ExpectMatcherState, component: import("..").Label, args_0: string, args_1?: import("..").TransformOptions | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
100
100
  readonly toContainUploadedFiles: (this: import("@playwright/test").ExpectMatcherState, component: import("..").FileUploader, args_0: string[], args_1?: {
101
101
  timeout?: number;
102
102
  } | undefined) => Promise<import("@playwright/test").MatcherReturnType>;
@@ -15,6 +15,9 @@ var toBeUnchecked_1 = require("./component/toBeUnchecked");
15
15
  var toHaveTextEx_1 = require("./component/toHaveTextEx");
16
16
  var toContainTextEx_1 = require("./component/toContainTextEx");
17
17
  var toHaveCountEx_1 = require("./component/toHaveCountEx");
18
+ var toContainFormattedTextEx_1 = require("./component/toContainFormattedTextEx");
19
+ var toHaveFormattedValueEx_1 = require("./component/toHaveFormattedValueEx");
20
+ var toHaveFormattedTextEx_1 = require("./component/toHaveFormattedTextEx");
18
21
  var toHaveItems_1 = require("./component/toHaveItems");
19
22
  var toContainItems_1 = require("./component/toContainItems");
20
23
  var toContainItem_1 = require("./component/toContainItem");
@@ -24,7 +27,6 @@ var toBeAutoMode_1 = require("./component/toBeAutoMode");
24
27
  var toHaveError_1 = require("./component/toHaveError");
25
28
  var toHaveWarning_1 = require("./component/toHaveWarning");
26
29
  var toContainUploadedFiles_1 = require("./component/toContainUploadedFiles");
27
- var toContainFormattedText_1 = require("./component/toContainFormattedText");
28
30
  var toContainTokens_1 = require("./component/toContainTokens");
29
31
  var toHaveActiveTab_1 = require("./component/toHaveActiveTab");
30
32
  var toContainTabs_1 = require("./component/toContainTabs");
@@ -38,8 +40,6 @@ var toContainSelectValue_1 = require("./component/toContainSelectValue");
38
40
  var toBeCheckedByText_1 = require("./component/toBeCheckedByText");
39
41
  var toBeUncheckedByText_1 = require("./component/toBeUncheckedByText");
40
42
  var toHaveActivePage_1 = require("./component/toHaveActivePage");
41
- var toHaveFormattedValue_1 = require("./component/toHaveFormattedValue");
42
- var toHaveFormattedText_1 = require("./component/toHaveFormattedText");
43
43
  var matchers = {
44
44
  /*
45
45
  NOTE: некоторые кастомные матчеры содержат суффикс "Ex",
@@ -58,7 +58,10 @@ var matchers = {
58
58
  toHaveValueEx: toHaveValueEx_1.toHaveValueEx,
59
59
  toHaveTextEx: toHaveTextEx_1.toHaveTextEx,
60
60
  toHaveCountEx: toHaveCountEx_1.toHaveCountEx,
61
+ toHaveFormattedValueEx: toHaveFormattedValueEx_1.toHaveFormattedValueEx,
62
+ toHaveFormattedTextEx: toHaveFormattedTextEx_1.toHaveFormattedTextEx,
61
63
  toContainTextEx: toContainTextEx_1.toContainTextEx,
64
+ toContainFormattedTextEx: toContainFormattedTextEx_1.toContainFormattedTextEx,
62
65
  toBeAutoMode: toBeAutoMode_1.toBeAutoMode,
63
66
  toBeUnchecked: toBeUnchecked_1.toBeUnchecked,
64
67
  toBeActiveTab: toBeActiveTab_1.toBeActiveTab,
@@ -76,14 +79,11 @@ var matchers = {
76
79
  toHaveActiveTab: toHaveActiveTab_1.toHaveActiveTab,
77
80
  toHavePageCount: toHavePageCount_1.toHavePageCount,
78
81
  toHaveActivePage: toHaveActivePage_1.toHaveActivePage,
79
- toHaveFormattedValue: toHaveFormattedValue_1.toHaveFormattedValue,
80
- toHaveFormattedText: toHaveFormattedText_1.toHaveFormattedText,
81
82
  toContainItems: toContainItems_1.toContainItems,
82
83
  toContainItem: toContainItem_1.toContainItem,
83
84
  toContainTokens: toContainTokens_1.toContainTokens,
84
85
  toContainTabs: toContainTabs_1.toContainTabs,
85
86
  toContainSelectValue: toContainSelectValue_1.toContainSelectValue,
86
- toContainFormattedText: toContainFormattedText_1.toContainFormattedText,
87
87
  toContainUploadedFiles: toContainUploadedFiles_1.toContainUploadedFiles,
88
88
  };
89
89
  exports.componentMatchers = test_1.expect.extend(matchers);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skbkontur/playwright-react-ui-components",
3
- "version": "1.14.0-beta.2",
3
+ "version": "1.14.0-beta.3",
4
4
  "description": "Пакет для взаимодействия с компонентами @skbkontur/react-ui при тестировании с помощью Playwright",
5
5
  "main": "build/index.js",
6
6
  "files": [
@@ -1,3 +0,0 @@
1
- import type { Label } from '../../components';
2
- import type { TransformOptions } from '../../options';
3
- export declare const toContainFormattedText: (this: import("playwright/test").ExpectMatcherState, component: Label, args_0: string, args_1?: TransformOptions | undefined) => Promise<import("playwright/test").MatcherReturnType>;
@@ -1,3 +0,0 @@
1
- import type { TransformOptions } from '../../options';
2
- import type { ToTextElementLocator } from './LocatorSymbols';
3
- export declare const toHaveFormattedText: (this: import("playwright/test").ExpectMatcherState, component: ToTextElementLocator, args_0: string, args_1?: TransformOptions | undefined) => Promise<import("playwright/test").MatcherReturnType>;
@@ -1,3 +0,0 @@
1
- import type { TransformOptions } from '../../options';
2
- import { type ToWithValueElementLocator } from './LocatorSymbols';
3
- export declare const toHaveFormattedValue: (this: import("playwright/test").ExpectMatcherState, component: ToWithValueElementLocator, args_0: string, args_1?: TransformOptions | undefined) => Promise<import("playwright/test").MatcherReturnType>;