Skip to content

Commit

Permalink
Run rebuild script
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoor committed Jan 3, 2025
1 parent 4dee5ad commit 03816ca
Showing 1 changed file with 92 additions and 0 deletions.
92 changes: 92 additions & 0 deletions connection_testcases.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,98 @@
[
{
" ": "/*** WARNING: do not edit this file. This is automatically rebuilt using tools/rebuild.ts ***/",
"env": {
"EDGEDB_PASSWORD": "secret",
"EDGEDB_PORT": "1234"
},
"name": "basic_env_EDGEDB_PASSWORD is recognised",
"result": {
"address": [
"localhost",
1234
],
"branch": "__default__",
"database": "edgedb",
"password": "secret",
"secretKey": null,
"serverSettings": {},
"tlsCAData": null,
"tlsSecurity": "strict",
"tlsServerName": null,
"user": "edgedb",
"waitUntilAvailable": "PT30S"
}
},
{
"env": {
"EDGEDB_PORT": "1234",
"EDGEDB_USER": "testuser"
},
"name": "basic_env_EDGEDB_USER is recognised",
"result": {
"address": [
"localhost",
1234
],
"branch": "__default__",
"database": "edgedb",
"password": null,
"secretKey": null,
"serverSettings": {},
"tlsCAData": null,
"tlsSecurity": "strict",
"tlsServerName": null,
"user": "testuser",
"waitUntilAvailable": "PT30S"
}
},
{
"env": {
"GEL_PASSWORD": "secret",
"GEL_PORT": "1234"
},
"name": "basic_env_GEL_PASSWORD is recognised",
"result": {
"address": [
"localhost",
1234
],
"branch": "__default__",
"database": "edgedb",
"password": "secret",
"secretKey": null,
"serverSettings": {},
"tlsCAData": null,
"tlsSecurity": "strict",
"tlsServerName": null,
"user": "edgedb",
"waitUntilAvailable": "PT30S"
}
},
{
"env": {
"GEL_PORT": "1234",
"GEL_USER": "testuser"
},
"name": "basic_env_GEL_USER is recognised",
"result": {
"address": [
"localhost",
1234
],
"branch": "__default__",
"database": "edgedb",
"password": null,
"secretKey": null,
"serverSettings": {},
"tlsCAData": null,
"tlsSecurity": "strict",
"tlsServerName": null,
"user": "testuser",
"waitUntilAvailable": "PT30S"
}
},
{
"env": {
"EDGEDB_PORT": "1234"
},
Expand Down

0 comments on commit 03816ca

Please sign in to comment.