Year: 2022
-
Post Views: 17 1. Request in Altairhttps://object.local/graphql, Response: “Http Failure Response forhttps://object.local/graphql:0 unknown error”. As shown in Figure 1 2. It needs to be opened in the browser:https://object.local, and then find that the Chrome browser is safely intercepted, after selecting trust, request againhttps://object.local/graphql, the response 200. as shown in Figure 2
-
Post Views: 18 1. When writing the automated test cases of Lighthouse 5, phpstorm cannot be completed automatically. When you click $response->assetJSON, you cannot find the statement you want to go to. fashionAssertJSONNot found in \illuminate\testing\testResponse. as shown in Figure 1 2. Print the $response object, its actual path is:\illuminate\foundation\testing\testResponse. as shown in Figure 2 3. In another project, phpstorm…
-
Post Views: 19 1. When writing the automated test case of Lighthouse 5, split a test method into two test methods. The present stage is a method 2, split into two methods 3. Run the test and report an error: Error: Error: call to undefined method illuminate\support\facades\config::set(). as shown in Figure 1 4. At this time, if any of the…
-
Post Views: 16 1. Reference URL:https://www.shuijingwanwq.com/2022/01/21/5772/. The personal identification code (PIN code) mailed has never been received. In the end, I had to send a proof of identity, so that I no longer need to enter a personal identification code. 2. The last time is the 4th attempt to verify the PIN code, the date is: 2022-01-10. as shown in…
-
Post Views: 68 1. Refer to Creating Merge requests: https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html 2. Enter the project, select Merge requests in the left menu, and then select New Merge request in the upper right corner. as shown in Figure 1 3. Select Source Branch, for your current branch: feature/theme-store-wangqiang, select target Branch, for the target branch that is expected to be merged: feature/theme-store,…
-
Post Views: 16 1. When running the test case of lighthouse, an error is reported: classoverTrue\LaravelVersionABLE\ServiceProvidernot found. as shown in Figure 1 2. Search the class in the IDE: overtrue\LaravelVelVersionable\ServiceProvider, not found. as shown in Figure 2 3. Find the code in the project: LaravelVersionable, find the file /bootstrap/cache/packages.phpunit.php exists in: overtrue\\LaravelVersionable\\ServiceProvider . as shown in Figure 3 4. View…
-
Post Views: 16 1. After the Git branch – after transformation, there are 2 submissions that are duplicated. as shown in Figure 1 2. Reset the version to the last submission today, as shown in Figure 2 3. Reset type: hard reset. 4. The local repository has been reset to the last commit today. 2 submissions will not be repeated.…
-
Post Views: 23 1. Error when running phpunit in Laravel 6: php fatal error: allow memory size of 1073741824 bytes exhausted (Tried to allocate 69632 bytes). as shown in Figure 1 2. Edit the php.ini file and set memory_limit = 4096M. Previously Memory_Limit = 1024M. It will not prompt again that the memory usage is too limited. 3. When running…