Skip to content

Commit 9317569

Browse files
committed
refactor: remove unimportant test, domain is not important.
1 parent 1c4a6bd commit 9317569

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

core/database/foxx/tests/validation.test.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -240,14 +240,6 @@ describe("unit_validation_repository: Repository Validation Tests", function ()
240240
expect(result.error.message).to.include("Endpoint is required");
241241
});
242242

243-
it("should reject missing domain", function () {
244-
const config = getValidGlobusConfig();
245-
delete config.domain;
246-
const result = validateGlobusConfig(config);
247-
expect(result.ok).to.be.false;
248-
expect(result.error.message).to.include("Domain is required");
249-
});
250-
251243
it("should reject invalid repository path", function () {
252244
const config = getValidGlobusConfig();
253245
config.path = "/data/repos/wrong-name";

0 commit comments

Comments
 (0)