/**
  * @group schema
  * @group integration
  */
 public function testIndexIsDropped()
 {
     $index = $this->client->createSchemaIndex("SchemaNode", "id");
     $this->client->dropSchemaIndex($index);
     $this->assertCount(0, $this->client->getSchemaIndexes());
 }