| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Render should render component 1`] = `
- <div
- className="gf-form-button-row"
- >
- <button
- className="btn btn-primary"
- disabled={true}
- onClick={[Function]}
- type="submit"
- >
- Save & Test
- </button>
- <button
- className="btn btn-danger"
- disabled={true}
- onClick={[MockFunction]}
- type="submit"
- >
- Delete
- </button>
- <a
- className="btn btn-inverse"
- href="/datasources"
- >
- Back
- </a>
- </div>
- `;
- exports[`Render should render with buttons enabled 1`] = `
- <div
- className="gf-form-button-row"
- >
- <button
- className="btn btn-primary"
- disabled={false}
- onClick={[Function]}
- type="submit"
- >
- Save & Test
- </button>
- <button
- className="btn btn-danger"
- disabled={false}
- onClick={[MockFunction]}
- type="submit"
- >
- Delete
- </button>
- <a
- className="btn btn-inverse"
- href="/datasources"
- >
- Back
- </a>
- </div>
- `;
|