Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(config): Create an all tileset from imagery configs. BM-805 #2794

Merged
merged 16 commits into from
Aug 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ o.spec('MemoryConfig', () => {

o('virtual tilesets should be created with `:`', async () => {
const idA = ulid();
await new Promise((resolve) => setTimeout(resolve, 5));
const idB = ulid();
Wentao-Kuang marked this conversation as resolved.
Show resolved Hide resolved
config.objects.clear();
config.put({
Expand Down Expand Up @@ -176,7 +175,9 @@ o.spec('MemoryConfig', () => {
});

o('The latest imagery should overwrite the old ones', async () => {
await new Promise((resolve) => setTimeout(resolve, 5));
Wentao-Kuang marked this conversation as resolved.
Show resolved Hide resolved
const idLater = ulid();
await new Promise((resolve) => setTimeout(resolve, 5));
blacha marked this conversation as resolved.
Show resolved Hide resolved
const idLatest = ulid();
config.put(baseImg);
config.put({ ...baseImg, id: `im_${idLater}` } as ConfigImagery);
Expand Down
Loading