CSR-818: remove no longer needed unit test
This commit is contained in:
parent
3cb31dcd59
commit
788810a93f
1 changed files with 0 additions and 15 deletions
|
|
@ -19,21 +19,6 @@ describe("buttonMain.vue", () => {
|
||||||
expect(button.attributes("class")).toContain("btn-primary");
|
expect(button.attributes("class")).toContain("btn-primary");
|
||||||
});
|
});
|
||||||
|
|
||||||
it("Should return aria-disabled state", async () => {
|
|
||||||
// Act
|
|
||||||
const wrapper = shallowMount(buttonMain, setupMocks({
|
|
||||||
propsData: {
|
|
||||||
isDisabled: true,
|
|
||||||
},
|
|
||||||
}));
|
|
||||||
|
|
||||||
// Assert
|
|
||||||
const button = wrapper.find("button");
|
|
||||||
|
|
||||||
// Expect
|
|
||||||
expect(button.attributes()["aria-disabled"]).toEqual("true");
|
|
||||||
});
|
|
||||||
|
|
||||||
it("Should return loader color", async () => {
|
it("Should return loader color", async () => {
|
||||||
// Act
|
// Act
|
||||||
const wrapper = shallowMount(buttonMain, setupMocks({
|
const wrapper = shallowMount(buttonMain, setupMocks({
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue