snappymail/tests/Common/NpmTest.php

15 lines
288 B
PHP
Raw Normal View History

2016-05-25 03:27:11 +08:00
<?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'));
}
}