Skip to content

Commit da7f734

Browse files
committed
alpha 7
1 parent a4a5e92 commit da7f734

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"@ngrx/store": "12.0.0",
4242
"@nrwl/angular": "12.0.3",
4343
"@nrwl/nx-cloud": "11.2.0",
44-
"@testing-library/dom": "^8.0.0-alpha.6",
44+
"@testing-library/dom": "^8.0.0-alpha.7",
4545
"@testing-library/user-event": "^13.1.9",
4646
"core-js": "^3.6.5",
4747
"rxjs": "^6.5.5",

projects/testing-library/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"@angular/core": ">= 10.0.0"
3737
},
3838
"dependencies": {
39-
"@testing-library/dom": "^8.0.0-alpha.6",
39+
"@testing-library/dom": "^8.0.0-alpha.7",
4040
"tslib": "^2.0.0"
4141
},
4242
"publishConfig": {

projects/testing-library/src/lib/models.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Type, DebugElement } from '@angular/core';
22
import { ComponentFixture } from '@angular/core/testing';
33
import { Routes } from '@angular/router';
4-
import { BoundFunction, Queries, queries, Config as dtlConfig, PrettyFormatOptions } from '@testing-library/dom';
4+
import { BoundFunction, Queries, queries, Config as dtlConfig, PrettyDOMOptions } from '@testing-library/dom';
55

66
export type RenderResultQueries<Q extends Queries = typeof queries> = { [P in keyof Q]: BoundFunction<Q[P]> };
77
export interface RenderResult<ComponentType, WrapperType = ComponentType> extends RenderResultQueries {
@@ -22,7 +22,7 @@ export interface RenderResult<ComponentType, WrapperType = ComponentType> extend
2222
debug: (
2323
element?: Element | HTMLDocument | (Element | HTMLDocument)[],
2424
maxLength?: number,
25-
options?: PrettyFormatOptions,
25+
options?: PrettyDOMOptions,
2626
) => void;
2727
/**
2828
* @description

0 commit comments

Comments
 (0)