12 lines
284 B
PHP
12 lines
284 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
it('serves the Norwegian homepage by default', function () {
|
||
|
|
$this->visit(BASE_URL . '/')
|
||
|
|
->assertSourceHas('lang="no"');
|
||
|
|
});
|
||
|
|
|
||
|
|
it('english news section is accessible', function () {
|
||
|
|
$this->visit(BASE_URL . '/en/nyheter')
|
||
|
|
->assertSourceHas('<main');
|
||
|
|
});
|