mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-04 02:48:24 +01:00
13 lines
245 B
PHP
13 lines
245 B
PHP
|
<?php
|
||
|
|
||
|
final class ArcanistJSHintLinterTestCase
|
||
|
extends ArcanistArcanistLinterTestCase {
|
||
|
|
||
|
public function testJSHintLinter() {
|
||
|
$this->executeTestsInDirectory(
|
||
|
dirname(__FILE__).'/jshint/',
|
||
|
new ArcanistJSHintLinter());
|
||
|
}
|
||
|
|
||
|
}
|