forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteConfig.js
35 lines (33 loc) · 1.27 KB
/
siteConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
var Button = require('Button');
var siteConfig = {
title: "Jest",
tagline: "Painless JavaScript Unit Testing",
description: "Jest is a JavaScript unit testing framework, used by Facebook to test services and React applications.",
url: "https://facebook.github.io",
baseUrl: "/jest/",
repo: "facebook/jest",
homepagePromos: [
<div className="pluginRowBlock">
<Button href="/jest/docs/getting-started.html#content">Get Started</Button>
<Button href="/jest/docs/api.html#content">API Reference</Button>
</div>,
],
features: [
{
image: "/jest/img/content/adaptable.svg",
title: "Adaptable",
content: "Jest uses Jasmine assertions by default and Jest is modular, extendible and configurable."
},
{
image: "/jest/img/content/sandboxed.svg",
title: "Sandboxed and Fast",
content: "Jest virtualizes JavaScript environments, provides browser mocks and runs tests in parallel across workers."
},
{
image: "/jest/img/content/automatic_mocks.svg",
title: "Mock by Default",
content: "Jest [automatically mocks](/jest/docs/automatic-mocking.html#content) JavaScript [modules](/jest/docs/common-js-testing.html#content), making most existing code testable."
},
]
};
module.exports = siteConfig;