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.

ProjectAdminPageExtension-test.tsx.snap 1.1KB

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