Skip to content

Calling environment.set(data) when subclassing doesn't set data #70

@scottpdo

Description

@scottpdo

Example:

const env = new Environment({
  test: "123"
});
env.get("test"); // returns null

It does work if you call set separately:

const env = new Environment();
env.set({
  test: "123"
});
env.get("test"); // returns "123"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions