67 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
// Jest Snapshot v1, https://goo.gl/fbAQLP
 | 
						|
 | 
						|
exports[`<SettingsFieldset /> renders fieldset with plain text description 1`] = `
 | 
						|
<fieldset
 | 
						|
  class="mx_SettingsFieldset"
 | 
						|
  data-test-id="test"
 | 
						|
>
 | 
						|
  <legend
 | 
						|
    class="mx_SettingsFieldset_legend"
 | 
						|
  >
 | 
						|
    Who can read history?
 | 
						|
  </legend>
 | 
						|
  <div
 | 
						|
    class="mx_SettingsFieldset_description"
 | 
						|
  >
 | 
						|
    Changes to who can read history.
 | 
						|
  </div>
 | 
						|
  <div>
 | 
						|
    test
 | 
						|
  </div>
 | 
						|
</fieldset>
 | 
						|
`;
 | 
						|
 | 
						|
exports[`<SettingsFieldset /> renders fieldset with react description 1`] = `
 | 
						|
<fieldset
 | 
						|
  class="mx_SettingsFieldset"
 | 
						|
  data-test-id="test"
 | 
						|
>
 | 
						|
  <legend
 | 
						|
    class="mx_SettingsFieldset_legend"
 | 
						|
  >
 | 
						|
    Who can read history?
 | 
						|
  </legend>
 | 
						|
  <div
 | 
						|
    class="mx_SettingsFieldset_description"
 | 
						|
  >
 | 
						|
    <p>
 | 
						|
      Test
 | 
						|
    </p>
 | 
						|
    <a
 | 
						|
      href="#test"
 | 
						|
    >
 | 
						|
      a link
 | 
						|
    </a>
 | 
						|
  </div>
 | 
						|
  <div>
 | 
						|
    test
 | 
						|
  </div>
 | 
						|
</fieldset>
 | 
						|
`;
 | 
						|
 | 
						|
exports[`<SettingsFieldset /> renders fieldset without description 1`] = `
 | 
						|
<fieldset
 | 
						|
  class="mx_SettingsFieldset"
 | 
						|
  data-test-id="test"
 | 
						|
>
 | 
						|
  <legend
 | 
						|
    class="mx_SettingsFieldset_legend"
 | 
						|
  >
 | 
						|
    Who can read history?
 | 
						|
  </legend>
 | 
						|
  <div>
 | 
						|
    test
 | 
						|
  </div>
 | 
						|
</fieldset>
 | 
						|
`;
 |