mirror of
https://github.com/grafana/grafana.git
synced 2025-09-27 06:43:56 +08: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');
|
|
});
|
|
});
|