UNCLASSIFIED

Commit c15724c2 authored by jtwidt's avatar jtwidt
Browse files

added unit test for coverage

parent 368c85dd
import { mount } from "@vue/test-utils";
import Resources from "@/views/Resources.vue";
describe("Resources", () => {
it("should have a variable called training", () => {
const wrapper = mount(Resources);
expect(wrapper.find(".training"));
});
it("should have a variable called learning", () => {
const wrapper = mount(Resources);
expect(wrapper.find(".learning"));
});
});
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment