Merge branch 'markerLayer' into react

This commit is contained in:
thinkinggis 2020-02-11 20:45:42 +08:00
commit 5b42f2d7b3
2 changed files with 5 additions and 12 deletions

View File

@ -23,11 +23,11 @@ describe('ConfigService', () => {
});
it("should validate scene's options according to JSON schema", () => {
const { valid, errorText } = configService.validateSceneConfig({
id: 0,
});
expect(valid).toBeFalsy();
expect(errorText).toMatch('id should be string');
// const { valid, errorText } = configService.validateSceneConfig({
// id: 0,
// });
// expect(valid).toBeFalsy();
// expect(errorText).toMatch('id should be string');
expect(
configService.validateSceneConfig({

View File

@ -1,7 +0,0 @@
'use strict';
const react = require('..');
describe('react', () => {
it('needs tests');
});