separate validateClientIdentifier from fetchClientIdentifier, add validateProfile
[squeep-indieauth-helper] / test / lib / errors.js
1 /* eslint-env mocha */
2 'use strict';
3
4 const assert = require('assert');
5 const { ValidationError } = require('../../lib/errors');
6
7 describe('Errors', function () {
8 describe('ValidationError', function () {
9 it('covers', function () {
10 const e = new ValidationError();
11 assert.strictEqual(e.name, 'ValidationError');
12 });
13 }); // ValidationError
14 }); // Errors