grafana/packages/grafana-e2e/test/cypress/integration/1.api.ts
Steven Vachon 10715a1c79
@grafana/e2e: added tests (#25836)
* Use at least cypress@4.9

... which has [arguably] better TypeScript definitions

* Updated lockfile

* Added tests for CLI and API

* Minor changes
2020-06-25 13:17:45 -04:00

8 lines
141 B
TypeScript

import { e2e } from '../../../dist';
describe('API', () => {
it('can be imported', () => {
expect(e2e).to.be.a('function');
});
});