From ca77fd5f3062cee352d5743961d62ad7cf3a6193 Mon Sep 17 00:00:00 2001 From: delucis Date: Sun, 22 Apr 2018 16:44:53 +0200 Subject: [PATCH] Improve naming of .load() test. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index b930800..bc30489 100644 --- a/test/test.js +++ b/test/test.js @@ -10,7 +10,7 @@ test('load & validate file', async test => { test.is(data.familyName, 'Test Font') }) -test('fail to validate', async test => { +test('load & fail to validate', async test => { const err = await test.throws(makeGlyphs.load(testPlist)) test.is(err.name, 'ValidationError') })