17
jasmine: Callback Async tidak dipanggil dalam batas waktu yang ditentukan oleh jasmine.DEFAULT_TIMEOUT_INTERVAL
Saya memiliki layanan sudut bernama requestNotificationChannel: app.factory("requestNotificationChannel", function($rootScope) { var _DELETE_MESSAGE_ = "_DELETE_MESSAGE_"; function deleteMessage(id, index) { $rootScope.$broadcast(_DELETE_MESSAGE_, { id: id, index: index }); }; return { deleteMessage: deleteMessage }; }); Saya mencoba untuk menguji layanan ini menggunakan melati: "use strict"; describe("Request Notification Channel", function() { var requestNotificationChannel, rootScope, scope; …