Skip to content

Commit 25fd3e9

Browse files
f3l1xkodiakhq[bot]
authored andcommitted
Tests: drop probes
1 parent 230dddb commit 25fd3e9

File tree

26 files changed

+6
-222
lines changed

26 files changed

+6
-222
lines changed

β€Žtest/examples/01-cowsay/now.json

-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,5 @@
33
"builds": [
44
{ "src": "index.php", "use": "vercel-php@latest" },
55
{ "src": "subdirectory/index.php", "use": "vercel-php@latest" }
6-
],
7-
"probes": [
8-
{ "path": "/", "mustContain": "cow:RANDOMNESS_PLACEHOLDER" },
9-
{ "path": "/subdirectory/", "mustContain": "yoda:RANDOMNESS_PLACEHOLDER" }
106
]
117
}

β€Žtest/examples/02-extensions/probe.js

-9
This file was deleted.

β€Žtest/examples/03-env-vars/now.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "env/index.php", "use": "vercel-php@latest" }],
4-
"probes": [{ "path": "/env", "mustContain": "RANDOMNESS_PLACEHOLDER:env" }]
3+
"builds": [{ "src": "env/index.php", "use": "vercel-php@latest" }]
54
}

β€Žtest/examples/04-include-files/now.json

-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@
66
"use": "vercel-php@latest",
77
"config": { "includeFiles": ["included*.php"] }
88
}
9-
],
10-
"probes": [
11-
{ "path": "/", "mustContain": "mainfile:included:RANDOMNESS_PLACEHOLDER" }
129
]
1310
}

β€Žtest/examples/05-globals/probe.js

-156
This file was deleted.

β€Žtest/examples/06-setcookie/probe.js

-9
This file was deleted.

β€Žtest/examples/07-function/probe.js

-8
This file was deleted.

β€Žtest/examples/08-opcache/probe.js

-6
This file was deleted.

β€Žtest/examples/09-routes/now.json

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
{
22
"version": 2,
33
"builds": [{ "src": "index.php", "use": "vercel-php@latest" }],
4-
"routes": [{ "src": "/(.*)", "dest": "index.php" }],
5-
"probes": [
6-
{ "path": "/any", "mustContain": "cow:RANDOMNESS_PLACEHOLDER:/any" },
7-
{
8-
"path": "/any?type=some",
9-
"mustContain": "cow:RANDOMNESS_PLACEHOLDER:/any?type=some"
10-
}
11-
]
4+
"routes": [{ "src": "/(.*)", "dest": "index.php" }]
125
}

β€Žtest/examples/10-composer/probe.js

-6
This file was deleted.

β€Žtest/examples/11-build-env/.gitignore

-3
This file was deleted.

β€Žtest/examples/11-build-env/composer.json

Whitespace-only changes.

β€Žtest/examples/11-build-env/probe.js

-6
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor
2+
.vercel

β€Žtest/examples/11-build-env/now.json β€Žtest/examples/11-composer-env/now.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": 2,
3-
"builds": [{ "src": "index.php", "use": "vercel-php@latest" }],
3+
"builds": [{ "src": "index.php", "use": "vercel-php@0.0.23" }],
44
"build": {
55
"env": {
66
"COMPOSER": "composer-test.json"

β€Žtest/examples/13-composer-scripts/now.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"functions": {
33
"api/index.php": {
4-
"runtime": "[email protected].18"
4+
"runtime": "[email protected].23"
55
}
66
},
77
"routes": [

0 commit comments

Comments
Β (0)