プロジェクトで angular-datatables を使用しており、そのための Jasmine/Karma ユニット テストを作成したいと考えています。
これは私のコントローラからのコードです:
$scope.dtOptions = DTOptionsBuilder.fromSource('/api/books/')
.withBootstrap()
.withPaginationType('simple_numbers')
.withDisplayLength(10)
//.withOption('serverSide', true)
.withOption('processing', true)
.withOption('createdRow', createdRow);
$scope.dtColumns = [
DTColumnBuilder.newColumn('id').withTitle('ID'),
DTColumnBuilder.newColumn('name').withTitle('Name')
DTColumnBuilder.newColumn(null).withTitle('Actions').notSortable()
.renderWith(actionsHtml)
];
からの JSON 応答を偽造して、単体テストを作成するにはどうすればよい/api/books
ですか?