0
是否可以在L5單元測試中等待。我有以下的情況下Laravel單元測試延遲
$this->visit('/')
->select('Customer A', 'customer')// This will fire $.getJSON and populate the 'project' select object
//I need to wait a bit here for the 'project' select object to be populated
->select('Project A', 'project')
的選擇對象調用customer
火災一$ .getJSON上改變其填充project
選擇對象。
你有沒有試過php的sleep()函數? – mimo
是的,這是因爲某些原因沒有工作。 – Tuim
我不知道phpunit測試是如何工作的。但如果通過curl完成,則JavaScript代碼將不會執行,因此您的選擇絕不會觸發ajax調用。 – mimo