File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ beforeEach(() => {
101
101
102
102
afterEach (() => {
103
103
// nous nettoyons un peu
104
- document .body .outerHTML = ' ' ;
104
+ document .body .innerHTML = ' ' ;
105
105
});
106
106
107
107
test (' teleport' , async () => {
@@ -174,7 +174,7 @@ beforeEach(() => {
174
174
175
175
afterEach (() => {
176
176
// nous nettoyons un peu
177
- document .body .outerHTML = ' ' ;
177
+ document .body .innerHTML = ' ' ;
178
178
});
179
179
180
180
test (' teleport' , async () => {
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ beforeEach(() => {
100
100
101
101
afterEach (() => {
102
102
// clean up
103
- document .body .outerHTML = ' '
103
+ document .body .innerHTML = ' '
104
104
})
105
105
106
106
test (' teleport' , async () => {
@@ -173,7 +173,7 @@ beforeEach(() => {
173
173
174
174
afterEach (() => {
175
175
// clean up
176
- document .body .outerHTML = ' '
176
+ document .body .innerHTML = ' '
177
177
})
178
178
179
179
test (' teleport' , async () => {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ beforeEach(() => {
12
12
13
13
afterEach ( ( ) => {
14
14
// clean up
15
- document . body . outerHTML = ''
15
+ document . body . innerHTML = ''
16
16
} )
17
17
18
18
test ( 'teleport' , async ( ) => {
You can’t perform that action at this time.
0 commit comments