File tree Expand file tree Collapse file tree 3 files changed +23
-0
lines changed
test/functional/fixtures/regression/gh-8391 Expand file tree Collapse file tree 3 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html >
3+ < head >
4+ < meta charset ="utf-8 " />
5+ < title > GH-8391</ title >
6+ </ head >
7+ < body >
8+ < div id ="status "> ok</ div >
9+ </ body >
10+ </ html >
Original file line number Diff line number Diff line change 1+ describe ( '[Regression](GH-8391)' , function ( ) {
2+ it ( 'Should not fail Firefox proxy-mode initialization' , function ( ) {
3+ return runTests ( 'testcafe-fixtures/index.js' , 'Should run a simple assertion in Firefox proxy mode' , { only : 'firefox' } ) ;
4+ } ) ;
5+ } ) ;
Original file line number Diff line number Diff line change 1+ import { Selector } from 'testcafe' ;
2+
3+ fixture ( 'GH-8391 - Firefox proxy mode should initialize scripts' )
4+ . page `http://localhost:3000/fixtures/regression/gh-8391/pages/index.html` ;
5+
6+ test ( 'Should run a simple assertion in Firefox proxy mode' , async t => {
7+ await t . expect ( Selector ( '#status' ) . innerText ) . eql ( 'ok' ) ;
8+ } ) ;
You can’t perform that action at this time.
0 commit comments