diff --git a/src/components/LicenseDropdown.vue b/src/components/LicenseDropdown.vue
index 39cf5a63c..d806a007f 100644
--- a/src/components/LicenseDropdown.vue
+++ b/src/components/LicenseDropdown.vue
@@ -1,67 +1,69 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/tests/e2e/specs/FirstStep.js b/tests/e2e/specs/FirstStep.js
new file mode 100644
index 000000000..e69de29bb
diff --git a/tests/unit/LicenseDropdown.spec.js b/tests/unit/LicenseDropdown.spec.js
new file mode 100644
index 000000000..969e5df22
--- /dev/null
+++ b/tests/unit/LicenseDropdown.spec.js
@@ -0,0 +1,68 @@
+import { mount, createLocalVue, config } from "@vue/test-utils";
+import LicenseDropdown from "@/Components/LicenseDropdown.vue";
+import VueI18n from "vue-i18n";
+import Vuex from "vuex";
+import Buefy from "buefy";
+
+describe("LicenseDropdown.vue", () => {
+ let wrapper;
+ let getters;
+ let store;
+ let state;
+
+ beforeEach(() => {
+ const localVue = createLocalVue();
+ localVue.use(VueI18n);
+ localVue.use(Vuex);
+ localVue.use(Buefy);
+
+ getters = {
+ shortName: state => {
+ return "name";
+ },
+
+ fullName: state => {
+ return "fullName";
+ }
+ };
+ store = new Vuex.Store({
+ store,
+ getters
+ });
+ const messages = require("@/locales/en.json");
+ const i18n = new VueI18n({
+ locale: "en",
+ fallbackLocale: "en",
+ messages: messages
+ });
+ config.mocks.i18n = i18n;
+ config.mocks.$t = key => {
+ return i18n.messages[key];
+ };
+ wrapper = mount(LicenseDropdown, {
+ localVue,
+ store
+ });
+ });
+
+ it("Has the field tag", () => {
+ expect(wrapper.contains(".license-dropdown")).toBe(true);
+ });
+
+ it("Has the option tag", () => {
+ expect(wrapper.contains(".options")).toBe(true);
+ });
+
+ it("should emit input event from setCurrentLicense method", async () => {
+ wrapper.vm.$emit("input");
+ await wrapper.vm.$nextTick();
+ expect(wrapper.emitted().input).toBeTruthy();
+ });
+
+ it("Checks whether select element is getting triggered", () => {
+ wrapper
+ .findAll(".select")
+ .at(0)
+ .trigger("input");
+ });
+});