build single test bunding using Webpack context
This commit is contained in:
parent
b72cf7c04b
commit
ade4216642
8 changed files with 81 additions and 31 deletions
|
@ -1,11 +1,11 @@
|
|||
import { DatafileServiceImpl } from './datafile.service.impl';
|
||||
import { DataFileServiceImpl } from './datafile.service.impl';
|
||||
|
||||
|
||||
describe("DatafileServiceImpl", () => {
|
||||
var datafileServiceImpl: DatafileServiceImpl;
|
||||
describe("DataFileServiceImpl", () => {
|
||||
var dataFileServiceImpl: DataFileServiceImpl;
|
||||
|
||||
beforeEach(() => {
|
||||
datafileServiceImpl = new DatafileServiceImpl();
|
||||
dataFileServiceImpl = new DataFileServiceImpl();
|
||||
});
|
||||
|
||||
describe("blobToString", () => {
|
||||
|
|
Reference in a new issue