regexper-static/src/pages/__snapshots__/index.test.js.snap

86 lines
1.6 KiB
Plaintext
Raw Normal View History

2019-01-04 23:38:49 +00:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Index Page rendering 1`] = `
<Fragment>
<Metadata />
<noscript>
<Message
heading="JavaScript Required"
type="error"
>
<p>
You need JavaScript to use Regexper.
</p>
<p>
If you have concerns regarding the use of tracking code on Regexper, please see the
<mockConstructor
to="/privacy"
>
Privacy Policy
</mockConstructor>
.
</p>
</Message>
</noscript>
2019-01-16 02:32:45 +00:00
<LoadNamespace(App)
expr=""
permalinkUrl={null}
2019-01-13 16:56:07 +00:00
syntax="testJs"
syntaxList={
Array [
Object {
"id": "testJS",
"name": "Testing JS",
},
Object {
"id": "other",
"name": "Other",
},
]
}
/>
</Fragment>
`;
exports[`Index Page rendering with an expression on the URL 1`] = `
<Fragment>
<Metadata />
<noscript>
<Message
heading="JavaScript Required"
type="error"
>
<p>
You need JavaScript to use Regexper.
</p>
<p>
If you have concerns regarding the use of tracking code on Regexper, please see the
<mockConstructor
to="/privacy"
>
Privacy Policy
</mockConstructor>
.
</p>
</Message>
</noscript>
2019-01-16 02:32:45 +00:00
<LoadNamespace(App)
expr="testing"
permalinkUrl="http://example.com"
syntax="test"
2019-01-13 16:56:07 +00:00
syntaxList={
Array [
Object {
"id": "testJS",
"name": "Testing JS",
},
Object {
"id": "other",
"name": "Other",
},
]
}
/>
</Fragment>
2019-01-04 23:38:49 +00:00
`;