mirror of
https://github.com/Esri/offline-editor-js.git
synced 2025-12-15 15:20:05 +00:00
70 lines
909 B
JavaScript
70 lines
909 B
JavaScript
"use strict";
|
|
|
|
describe("Normal online editing", function()
|
|
{
|
|
describe("Clear Feature Layers", function()
|
|
{
|
|
it("deletes all features - points", function()
|
|
{
|
|
|
|
});
|
|
|
|
it("deletes all features - lines", function()
|
|
{
|
|
|
|
});
|
|
|
|
it("deletes all features - polygons", function()
|
|
{
|
|
|
|
});
|
|
});
|
|
|
|
describe("Add features", function()
|
|
{
|
|
});
|
|
|
|
describe("Update features", function()
|
|
{
|
|
});
|
|
|
|
describe("Delete features", function()
|
|
{
|
|
});
|
|
}
|
|
|
|
describe("Offline Editing", function()
|
|
{
|
|
describe("Prepare Feature Layers", function()
|
|
{
|
|
});
|
|
|
|
describe("Go Offline", function()
|
|
{
|
|
});
|
|
|
|
describe("Update existing features", function()
|
|
{
|
|
});
|
|
|
|
describe("Delete existing features", function()
|
|
{
|
|
});
|
|
|
|
describe("Add new features", function()
|
|
{
|
|
});
|
|
|
|
describe("Update new features", function()
|
|
{
|
|
});
|
|
|
|
|
|
describe("Delete new features", function()
|
|
{
|
|
});
|
|
|
|
describe("Go Online", function()
|
|
{
|
|
});
|
|
}) |