mirror of
https://github.com/apache/superset.git
synced 2026-04-18 23:55:00 +00:00
* Allow users to save their queries Fixing tests . * Adding placeholder for Query Description * initJQueryCSRF -> initJQueryAjaxCSRF
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
import React from 'react';
|
|
import AlertsWrapper from '../../../javascripts/SqlLab/components/AlertsWrapper';
|
|
import { describe, it } from 'mocha';
|
|
import { expect } from 'chai';
|
|
|
|
|
|
describe('AlertsWrapper', () => {
|
|
it('is valid', () => {
|
|
expect(React.isValidElement(<AlertsWrapper />)).to.equal(true);
|
|
});
|
|
});
|