123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`0-indent-js.md 1`] = `
- - 1
- - 2
- - 3
- \`\`\`js
- md\`
- # this is the root indent
- # this is the root indent
- # this is the root indent
- \`
- something\`
- asd
- asd
- asd
- \`
- \`\`\`
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- - 1
- - 2
- - 3
- \`\`\`js
- md\`
- # this is the root indent
- # this is the root indent
- # this is the root indent
- \`;
- something\`
- asd
-
- asd
-
- asd
- \`;
- \`\`\`
- `;
- exports[`additional-space.md 1`] = `
- 1. Fork the repo and create your branch from \`master\`.
- Open terminal (e.g. Terminal, iTerm, Git Bash or Git Shell) and type:
- \`\`\`sh
- git clone https://github.com/<your_username>/jest
- cd jest
- git checkout -b my_branch
- \`\`\`
- Note:
- Replace \`<your_username>\` with your GitHub username
- 3. Run \`yarn install\`.
- On Windows:
- To install [Yarn](https://yarnpkg.com/en/docs/install#windows-tab) on Windows you may need to download either node.js or Chocolatey<br />
- \`\`\`sh
- yarn install
- \`\`\`
- To check your version of Yarn and ensure it's installed you can type:
- \`\`\`sh
- yarn --version
- \`\`\`~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- 1. Fork the repo and create your branch from \`master\`.
- Open terminal (e.g. Terminal, iTerm, Git Bash or Git Shell) and type:
- \`\`\`sh
- git clone https://github.com/<your_username>/jest
- cd jest
- git checkout -b my_branch
- \`\`\`
- Note: Replace \`<your_username>\` with your GitHub username
- 2. Run \`yarn install\`. On Windows: To install
- [Yarn](https://yarnpkg.com/en/docs/install#windows-tab) on Windows you may
- need to download either node.js or Chocolatey<br />
- \`\`\`sh
- yarn install
- \`\`\`
- To check your version of Yarn and ensure it's installed you can type:
- \`\`\`sh
- yarn --version
- \`\`\`
- `;
- exports[`backtick.md 1`] = `
- \`\`\`\`\`\`\`\`\`\`
- \`\`\`js
- console.log("hello world!");
- \`\`\`
- \`\`\`\`\`\`\`\`\`\`
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- \`\`\`\`
- \`\`\`js
- console.log("hello world!");
- \`\`\`
- \`\`\`\`
- `;
- exports[`format.md 1`] = `
- \`\`\`js
- const foo = 'bar'
- console .log( 213 )
- \`\`\`
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- \`\`\`js
- const foo = "bar";
- console.log(213);
- \`\`\`
- `;
- exports[`indent.md 1`] = `
- Indented Code Block
- Indented Code Block
- Indented Code Block
- Indented Code Block
- Indented Code Block
- - \`\`\`
- Fenced Code Block
- Fenced Code Block
- Fenced Code Block
- Fenced Code Block
- Fenced Code Block
- \`\`\`
- <!-- prettier/prettier#3459 -->
- 1. Change to your home directory:
- cd
- 2. List the contents:
- ls -l
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Indented Code Block
- Indented Code Block
- Indented Code Block
- Indented Code Block
- Indented Code Block
- - \`\`\`
- Fenced Code Block
- Fenced Code Block
- Fenced Code Block
- Fenced Code Block
- Fenced Code Block
- \`\`\`
- <!-- prettier/prettier#3459 -->
- 1. Change to your home directory:
- cd
- 2. List the contents:
- ls -l
- `;
- exports[`lang.md 1`] = `
- \`\`\`js
- console.log("hello world");
- \`\`\`
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- \`\`\`js
- console.log("hello world");
- \`\`\`
- `;
- exports[`simple.md 1`] = `
- \`\`\`
- hello world
- \`\`\`
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- \`\`\`
- hello world
- \`\`\`
- `;
|