mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* Use at least cypress@4.9 ... which has [arguably] better TypeScript definitions * Updated lockfile * Added tests for CLI and API * Minor changes
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
import { e2e } from '../../../dist';
|
|
|
|
describe('API', () => {
|
|
it('can be imported', () => {
|
|
expect(e2e).to.be.a('function');
|
|
});
|
|
});
|