SumOfUs/Champaign

View on GitHub
app/javascript/plugins/index.test.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { load } from './index';

describe('loader', function() {
  test('returns undefined if no plugin matching `name`', async () => {
    expect(await load('test', 'test')).toEqual(undefined);
  });
});