mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-09 10:12:20 +00:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
![]() |
import validatorsEmail from 'wherehows-web/utils/validators/email';
|
||
|
import { module, test } from 'qunit';
|
||
|
|
||
|
module('Unit | Utility | validators/email');
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
test('it works', function(assert) {
|
||
|
let result = validatorsEmail();
|
||
|
assert.ok(result);
|
||
|
});
|