You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProjectPageExtension-test.tsx.snap 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render correctly 1`] = `
  3. <InjectIntl(withRouter(Connect(Extension)))
  4. extension={
  5. Object {
  6. "key": "plugin-key/extension-key",
  7. "name": "plugin",
  8. }
  9. }
  10. options={
  11. Object {
  12. "branchLike": Object {
  13. "analysisDate": "2018-01-01",
  14. "excludedFromPurge": true,
  15. "isMain": true,
  16. "name": "master",
  17. },
  18. "component": Object {
  19. "breadcrumbs": Array [],
  20. "extensions": Array [
  21. Object {
  22. "key": "plugin-key/extension-key",
  23. "name": "plugin",
  24. },
  25. ],
  26. "key": "my-project",
  27. "name": "MyProject",
  28. "organization": "foo",
  29. "qualifier": "TRK",
  30. "qualityGate": Object {
  31. "isDefault": true,
  32. "key": "30",
  33. "name": "Sonar way",
  34. },
  35. "qualityProfiles": Array [
  36. Object {
  37. "deleted": false,
  38. "key": "my-qp",
  39. "language": "ts",
  40. "name": "Sonar way",
  41. },
  42. ],
  43. "tags": Array [],
  44. },
  45. }
  46. }
  47. />
  48. `;
  49. exports[`should render correctly when the extension is not found 1`] = `
  50. <NotFound
  51. withContainer={false}
  52. />
  53. `;