-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
23 lines (20 loc) · 773 Bytes
/
index.js
File metadata and controls
23 lines (20 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict'
const path = require('path')
const getFullPageTests = require('./lib/getFullPageTests')
const getFullPageTestsInline = require('./lib/getFullPageTestsInline')
const fixturesDir = path.join(__dirname, 'fixtures')
const expectationsDir = path.join(__dirname, 'expectations')
module.exports = {
'getFullPageTests': function() {
return getFullPageTests(fixturesDir, expectationsDir)
},
'getFullPageTestsInline': function() {
return getFullPageTestsInline(fixturesDir, expectationsDir)
},
'getFullPageTestsFrom': function(fixturesDir, expectationsDir) {
return getFullPageTests(fixturesDir, expectationsDir)
},
'getFullPageTestsInlineFrom': function(fixturesDir, expectationsDir) {
return getFullPageTestsInline(fixturesDir, expectationsDir)
}
}