mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-24 06:47:05 +08:00
15 lines
288 B
PHP
15 lines
288 B
PHP
|
<?php
|
||
|
|
||
|
namespace CommonTests;
|
||
|
|
||
|
class NpmTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
public function testJsValidate()
|
||
|
{
|
||
|
$out = array();
|
||
|
exec('gulp js:validate', $out);
|
||
|
|
||
|
$this->assertTrue(0 < \count($out));
|
||
|
$this->assertTrue(false === \strpos(\implode('|', $out), 'problem'));
|
||
|
}
|
||
|
}
|