File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,10 @@ export function setupApplicationTest(hooks, _options) {
87
87
Uses current URL configuration to setup the test container.
88
88
89
89
* If `?nocontainer` is set, the test container will be hidden.
90
- * If `?dockcontainer` or `?devmode` are set the test container will be
91
- absolutely positioned.
92
- * If `?devmode` is set, the test container will be made full screen.
90
+ * If `?dockcontainer`, `?fullscreencontainer` or `?devmode` are set the test
91
+ container will be absolutely positioned.
92
+ * If `?devmode` or `?fullscreencontainer` is set, the test container will be
93
+ made full screen.
93
94
94
95
@method setupTestContainer
95
96
*/
@@ -103,9 +104,11 @@ export function setupTestContainer() {
103
104
104
105
let containerVisibility = params . nocontainer ? 'hidden' : 'visible' ;
105
106
let containerPosition =
106
- params . dockcontainer || params . devmode ? 'fixed' : 'relative' ;
107
+ params . dockcontainer || params . devmode || params . fullscreencontainer
108
+ ? 'fixed'
109
+ : 'relative' ;
107
110
108
- if ( params . devmode ) {
111
+ if ( params . devmode || params . fullscreencontainer ) {
109
112
testContainer . className = ' full-screen' ;
110
113
}
111
114
You can’t perform that action at this time.
0 commit comments