UNPKG

node-multi-storage-azure-blob

Version:

Provides access to Azure Blob Storage for node-multi-storage.

22 lines (21 loc) 342 B
'use strict'; module.exports = function (grunt, options) { let testSources = ['test/**/*.js']; return { cli: { src: testSources, options: { reporter: 'spec', quiet: false } }, build: { src: testSources, options: { reporter: 'xunit', captureFile: 'report-mocha-test.xml', quiet: true } } }; };