Skip to content

Commit

Permalink
test: Async key provider errors should be resolved internally
Browse files Browse the repository at this point in the history
  • Loading branch information
NikitaFedorov1 committed Apr 2, 2024
1 parent 89a4964 commit 2046ff5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jwt-async.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const test = require('tap').test
const Fastify = require('fastify')
const jwt = require('../jwt')

test('Async key provider should be resolved internaly', async function (t) {
test('Async key provider should be resolved internally', async function (t) {
const fastify = Fastify()
fastify.register(jwt, {
secret: {
Expand Down Expand Up @@ -34,7 +34,7 @@ test('Async key provider should be resolved internaly', async function (t) {
t.equal(response.payload, 'function')
})

test('Async key provider errors should be resolved internaly', async function (t) {
test('Async key provider errors should be resolved internally', async function (t) {
const fastify = Fastify()
fastify.register(jwt, {
secret: {
Expand Down

0 comments on commit 2046ff5

Please sign in to comment.