File tree Expand file tree Collapse file tree 3 files changed +29
-17
lines changed Expand file tree Collapse file tree 3 files changed +29
-17
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ require('./tasks/angular.task.js');
3
3
require ( './tasks/bower.task.js' ) ;
4
4
require ( 'laravel-elixir-livereload' ) ;
5
5
6
- process . env . DISABLE_NOTIFIER = true ;
7
6
8
7
/*
9
8
|--------------------------------------------------------------------------
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ class LaravelRoutesTest extends TestCase
4
+ {
5
+ /**
6
+ * A basic functional test example.
7
+ *
8
+ * @return void
9
+ */
10
+ public function testLandingResponseCode ()
11
+ {
12
+ $ response = $ this ->call ('GET ' , '/ ' );
13
+
14
+ $ this ->assertEquals (200 , $ response ->status ());
15
+ }
16
+
17
+ public function testServeAngular ()
18
+ {
19
+ $ this ->visit ('/ ' )
20
+ ->see ('ng-app ' );
21
+ }
22
+
23
+ public function testUnsupportedBrowserPage ()
24
+ {
25
+ $ this ->visit ('/unsupported-browser ' )
26
+ ->see ('update your browser ' )
27
+ ->see ('Internet Explorer ' );
28
+ }
29
+ }
You can’t perform that action at this time.
0 commit comments