-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathcodeception.php
More file actions
78 lines (65 loc) · 2.45 KB
/
codeception.php
File metadata and controls
78 lines (65 loc) · 2.45 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
return array(
/*
|--------------------------------------------------------------------------
| Codeception Configurations
|--------------------------------------------------------------------------
|
| This is where you add your Codeception configurations.
|
| Webception allows you to have access test suites for multiple applications.
|
| Place them in the order you want and they'll appear in the drop-down list
| in the front-end. The first site in the list will become the default
| site that's loaded on session load.
|
| Just add the site name and full path to the 'codeception.yml' below and you're set.
|
*/
'sites' => array(
//'cm5 staff' => dirname(__FILE__) .'\..\..\..\2picrm/modules\staff\codeception.yml',
'Webception' => dirname(__FILE__) .'/../../codeception.yml'
),
/*
|--------------------------------------------------------------------------
| Codeception Executable
|--------------------------------------------------------------------------
|
| Codeception is installed as a dependancy of Webception via Composer.
|
| You might need to set 'sudo chmod a+x vendor/bin/codecept' to allow Apache
| to execute the Codeception executable.
|
*/
'executable' => dirname(__FILE__) .'/../../vendor/bin/codecept',
/*
|--------------------------------------------------------------------------
| You get to decide which type of tests get included.
|--------------------------------------------------------------------------
*/
'tests' => array(
'acceptance' => TRUE,
'functional' => TRUE,
'unit' => TRUE,
),
/*
|--------------------------------------------------------------------------
| When we scan for the tests, we need to ignore the following files.
|--------------------------------------------------------------------------
*/
'ignore' => array(
'WebGuy.php',
'TestGuy.php',
'CodeGuy.php',
'_bootstrap.php',
'.DS_Store',
'_steps',
),
/*
|--------------------------------------------------------------------------
| Setting the location as the current file helps with offering information
| about where this configuration file sits on the server.
|--------------------------------------------------------------------------
*/
'location' => __FILE__,
);