cartodb-4.42/lib/assets/test/spec/builder/locale/en.json.spec.js
2024-04-06 05:25:13 +00:00

11 lines
400 B
JavaScript

var en = require('locale/en.json');
describe('en.json', function () {
describe('edit-feature', function () {
it('assert that the texts are the expected ones', function () {
var texts = en.editor['edit-feature'];
expect(texts.disabled).toEqual('Feature editing is disabled for %{disabledLayerType}. To edit data, export this layer and import it as a new layer.');
});
});
});