public function testIsIgnorablePath()
 {
     $this->configuration->setIgnorablePaths(['wp-admin', 'wp-login']);
     $service = new ErrorService($this->configuration);
     $_SERVER['REQUEST_URI'] = '/not-ignorable';
     $this->assertFalse($service->isIgnorablePath());
     $_SERVER['REQUEST_URI'] = '/wp-login';
     $this->assertTrue($service->isIgnorablePath());
 }