Skip to content

Commit 06b902c

Browse files
Merge pull request #82 from Exabyte-io/feature/SOF-7632
chore: remove exabyteml
2 parents 39d15a1 + 94d0bc1 commit 06b902c

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

dist/js/applicationMixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function applicationMixin(item) {
2828
return this.prop("isLicensed", false);
2929
},
3030
get isUsingMaterial() {
31-
const materialUsingApplications = ["vasp", "nwchem", "espresso", "exabyteml"];
31+
const materialUsingApplications = ["vasp", "nwchem", "espresso"];
3232
return materialUsingApplications.includes(this.name);
3333
},
3434
};

src/js/applicationMixin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export function applicationMixin(item: Base) {
6666
},
6767

6868
get isUsingMaterial() {
69-
const materialUsingApplications = ["vasp", "nwchem", "espresso", "exabyteml"];
69+
const materialUsingApplications = ["vasp", "nwchem", "espresso"];
7070
return materialUsingApplications.includes(this.name);
7171
},
7272
};

src/js/types/application-flavors.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ declare module "@exabyte-io/application-flavors.js" {
3535
export type ApplicationName =
3636
| "deepmd"
3737
| "espresso"
38-
| "exabyteml"
3938
| "jupyterLab"
4039
| "nwchem"
4140
| "python"

tests/js/application.test.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,6 @@ describe("Application", () => {
101101
expect(espressoApp.isUsingMaterial).to.be.true;
102102
});
103103

104-
it("should return true for exabyteml application", () => {
105-
const exabytemlApp = new Application({ name: "exabyteml" });
106-
expect(exabytemlApp.isUsingMaterial).to.be.true;
107-
});
108-
109104
it("should return false for other applications", () => {
110105
const otherApp = new Application({ name: "other_app" });
111106
expect(otherApp.isUsingMaterial).to.be.false;

0 commit comments

Comments
 (0)