diff --git a/tests/acceptance/Controllers/AccountControllerTest.php b/tests/acceptance/Controllers/AccountControllerTest.php
index adf72e3645..f2ec4ffa53 100644
--- a/tests/acceptance/Controllers/AccountControllerTest.php
+++ b/tests/acceptance/Controllers/AccountControllerTest.php
@@ -34,6 +34,8 @@ class AccountControllerTest extends TestCase
$this->be($this->user());
$this->call('GET', route('accounts.create', ['asset']));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('
');
}
/**
@@ -44,6 +46,8 @@ class AccountControllerTest extends TestCase
$this->be($this->user());
$this->call('GET', route('accounts.delete', [1]));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
@@ -65,6 +69,8 @@ class AccountControllerTest extends TestCase
$this->be($this->user());
$this->call('GET', route('accounts.edit', [1]));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
@@ -79,6 +85,8 @@ class AccountControllerTest extends TestCase
$this->changeDateRange($this->user(), $range);
$this->call('GET', route('accounts.index', ['asset']));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
@@ -98,6 +106,8 @@ class AccountControllerTest extends TestCase
$this->changeDateRange($this->user(), $range);
$this->call('GET', route('accounts.show', [1]));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
@@ -112,6 +122,8 @@ class AccountControllerTest extends TestCase
$this->changeDateRange($this->user(), $range);
$this->call('GET', route('accounts.show.date', [1, '2016-01-01']));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
diff --git a/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php b/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php
index 85abca1373..0dae2ce618 100644
--- a/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php
+++ b/tests/acceptance/Controllers/Admin/ConfigurationControllerTest.php
@@ -53,6 +53,9 @@ class ConfigurationControllerTest extends TestCase
$this->call('GET', route('admin.configuration.index'));
$this->assertResponseStatus(200);
+
+ // has bread crumb
+ $this->see('');
}
/**
diff --git a/tests/acceptance/Controllers/Admin/DomainControllerTest.php b/tests/acceptance/Controllers/Admin/DomainControllerTest.php
index 80e36fb4ad..8617ca3815 100644
--- a/tests/acceptance/Controllers/Admin/DomainControllerTest.php
+++ b/tests/acceptance/Controllers/Admin/DomainControllerTest.php
@@ -40,6 +40,8 @@ class DomainControllerTest extends TestCase
$this->call('GET', route('admin.users.domains'));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
diff --git a/tests/acceptance/Controllers/Admin/HomeControllerTest.php b/tests/acceptance/Controllers/Admin/HomeControllerTest.php
index 260417cdb2..999e7e6554 100644
--- a/tests/acceptance/Controllers/Admin/HomeControllerTest.php
+++ b/tests/acceptance/Controllers/Admin/HomeControllerTest.php
@@ -38,6 +38,8 @@ class HomeControllerTest extends TestCase
$this->be($this->user());
$this->call('GET', route('admin.index'));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
diff --git a/tests/acceptance/Controllers/Admin/UserControllerTest.php b/tests/acceptance/Controllers/Admin/UserControllerTest.php
index 0058c92a0d..68e06fd69a 100644
--- a/tests/acceptance/Controllers/Admin/UserControllerTest.php
+++ b/tests/acceptance/Controllers/Admin/UserControllerTest.php
@@ -38,6 +38,8 @@ class UserControllerTest extends TestCase
$this->be($this->user());
$this->call('GET', route('admin.users.edit', [1]));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
@@ -49,6 +51,8 @@ class UserControllerTest extends TestCase
$this->be($this->user());
$this->call('GET', route('admin.users'));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**
@@ -60,6 +64,8 @@ class UserControllerTest extends TestCase
$this->be($this->user());
$this->call('GET', route('admin.users.edit', [1]));
$this->assertResponseStatus(200);
+ // has bread crumb
+ $this->see('');
}
/**