Пример #1
0
 /**
  * @test
  */
 public function testBundles()
 {
     $processes = $this->manager->bundles(['foo'])->run(['foo' => 'bar']);
     $this->assertCount(1, $processes);
     $this->assertArrayHasKey('foo', $processes);
     $this->assertArrayNotHasKey('bar', $processes);
     $this->npm->run(['foo' => 'bar'], Argument::type(ConfigurationInterface::class))->shouldBeCalledTimes(1);
 }