Skip to content

Commit

Permalink
test: add tests for afterActiveInstanceBlur
Browse files Browse the repository at this point in the history
  • Loading branch information
trezy committed Jul 1, 2024
1 parent cf41a6f commit 365f92b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/unit/helpers/afterActiveInstanceBlur.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import {
describe,
expect,
it,
} from 'vitest';
import { afterActiveInstanceBlur } from '../../../lib/helpers/afterActiveInstanceBlur.js';

describe('afterActiveInstanceBlur', () =>
{
it('does nothing', () =>
{
expect(afterActiveInstanceBlur).to.be.a('function');
expect(afterActiveInstanceBlur()).to.be.undefined;
});
});

0 comments on commit 365f92b

Please sign in to comment.