File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
modules/module-mysql/test/src Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -163,8 +163,6 @@ jobs:
163
163
--name MySQLTestDatabase \
164
164
-e MYSQL_ROOT_PASSWORD=mypassword \
165
165
-e MYSQL_DATABASE=mydatabase \
166
- -e MYSQL_USER=myuser \
167
- -e MYSQL_PASSWORD=mypassword \
168
166
-p 3306:3306 \
169
167
-d mysql:${{ matrix.mysql-version }} \
170
168
--log-bin=/var/lib/mysql/mysql-bin.log
Original file line number Diff line number Diff line change 1
1
import { utils } from '@powersync/lib-services-framework' ;
2
2
3
3
export const env = utils . collectEnvironmentVariables ( {
4
- MYSQL_TEST_URI : utils . type . string . default ( 'mysql://myuser :mypassword@localhost:3306/mydatabase' ) ,
4
+ MYSQL_TEST_URI : utils . type . string . default ( 'mysql://root :mypassword@localhost:3306/mydatabase' ) ,
5
5
CI : utils . type . boolean . default ( 'false' ) ,
6
6
SLOW_TESTS : utils . type . boolean . default ( 'false' )
7
7
} ) ;
You can’t perform that action at this time.
0 commit comments