create([ 'nick' => 'joe', 'twitter' => 'joe__', ]); $note = Note::factory()->create(['note' => 'Hi @joe']); $response = $this->get($note->longurl); $html = $response->content(); $this->assertStringContainsString('Hi @joe__', $html); } }