forked from artsy/force
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.mocha.js
More file actions
33 lines (27 loc) · 706 Bytes
/
test.mocha.js
File metadata and controls
33 lines (27 loc) · 706 Bytes
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
/**
* This file is required for mocha specific global test setup steps
*/
require("@babel/register")({
extensions: [".ts", ".js", ".tsx", ".jsx"],
})
require("coffeescript/register")
require("should")
require("./src/lib/jade_hook")
const path = require("path")
const Adapter = require("enzyme-adapter-react-16")
const Enzyme = require("enzyme")
const sd = require("sharify").data
require("dotenv").config({
path: path.join(process.cwd(), ".env.test"),
})
Enzyme.configure({
adapter: new Adapter(),
})
sd.AP = {
loginPagePath: "/login",
signupPagePath: "/signup",
facebookPath: "/facebook",
twitterPath: "/twitter",
}
sd.APP_URL = "http://artsy.net"
sd.RECAPTCHA_KEY = "RECAPTCHA_KEY"