You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -63,7 +62,7 @@ public function it_can_run_widget_from_default_namespace(LaravelApplicationWrapp
63
62
);
64
63
$this->testDefaultSlider()
65
64
->shouldReturn(
66
-
'<div id="arrilot-widget-container-1" style="display:inline" class="arrilot-widget-container">Default test slider was executed with $slides = 6</div>'
65
+
'Default test slider was executed with $slides = 6'
67
66
);
68
67
}
69
68
@@ -74,7 +73,7 @@ public function it_can_run_widget_from_custom_namespace(LaravelApplicationWrappe
74
73
);
75
74
$this->slider()
76
75
->shouldReturn(
77
-
'<div id="arrilot-widget-container-1" style="display:inline" class="arrilot-widget-container">Slider was executed with $slides = 6</div>'
76
+
'Slider was executed with $slides = 6'
78
77
);
79
78
}
80
79
@@ -85,7 +84,7 @@ public function it_provides_config_override(LaravelApplicationWrapper $wrapper)
85
84
);
86
85
$this->slider(['slides' => 5])
87
86
->shouldReturn(
88
-
'<div id="arrilot-widget-container-1" style="display:inline" class="arrilot-widget-container">Slider was executed with $slides = 5</div>'
87
+
'Slider was executed with $slides = 5'
89
88
);
90
89
}
91
90
@@ -101,7 +100,7 @@ public function it_can_run_widgets_with_additional_params(LaravelApplicationWrap
101
100
);
102
101
$this->testWidgetWithParamsInRun([], 'asc')
103
102
->shouldReturn(
104
-
'<div id="arrilot-widget-container-1" style="display:inline" class="arrilot-widget-container">TestWidgetWithParamsInRun was executed with $flag = asc</div>'
103
+
'TestWidgetWithParamsInRun was executed with $flag = asc'
105
104
);
106
105
}
107
106
@@ -112,7 +111,7 @@ public function it_can_run_widgets_with_method_injection(LaravelApplicationWrapp
0 commit comments