Skip to content

Commit

Permalink
fix: Rearranging test
Browse files Browse the repository at this point in the history
Signed-off-by: Binyamin Yawitz <316103+byawitz@users.noreply.github.com>
  • Loading branch information
byawitz committed Apr 2, 2024
1 parent 10a2f89 commit 853ed3a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion e2e/tests/backend-links.spec.ts → e2e/tests/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ interface response {
}

let generatedLinkId = 0;
const short = 'aaefeaf';
const short = 'ga';
describe('Adding links', () => {
test("Adding link", async () => {
const res = await fetch(`${apiEndpoint}/links/`, {
Expand Down
5 changes: 5 additions & 0 deletions e2e/tests/test.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import './basic.ts'
import './links.ts'
import './campaigns.ts'
import './users.ts'
import './link.ts'
2 changes: 1 addition & 1 deletion e2e/tests/users.spec.ts → e2e/tests/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface response {

let generatedUserID = 0;
const fullname = "Test User";
describe.only('Testing Users', () => {
describe('Testing Users', () => {
test("Adding User", async () => {
const res = await fetch(`${apiEndpoint}/users/`, {
headers: {'x-linkos-token': 'token'},
Expand Down

0 comments on commit 853ed3a

Please sign in to comment.