Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
IDOSO Mais
idoso-mais-qa
Commits
cab15b83
Commit
cab15b83
authored
2 years ago
by
Aléxia Dorneles
Browse files
Options
Download
Email Patches
Plain Diff
feat(cypress): add typescript
parent
df02368d
Pipeline
#5067
failed with stages
in 0 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
cypress/e2e/example.cy.js
+0
-5
cypress/e2e/example.cy.js
cypress/e2e/example.cy.ts
+5
-0
cypress/e2e/example.cy.ts
cypress/tsconfig.json
+8
-0
cypress/tsconfig.json
package-lock.json
+19
-2
package-lock.json
package.json
+3
-2
package.json
with
35 additions
and
9 deletions
+35
-9
cypress/e2e/example.cy.js
deleted
100644 → 0
View file @
df02368d
describe
(
'
empty spec
'
,
()
=>
{
it
(
'
passes
'
,
()
=>
{
cy
.
visit
(
'
https://idoso-mais.herokuapp.com/
'
)
})
})
\ No newline at end of file
This diff is collapsed.
Click to expand it.
cypress/e2e/example.cy.ts
0 → 100644
View file @
cab15b83
describe
(
"
empty spec
"
,
()
=>
{
it
(
"
passes
"
,
()
=>
{
cy
.
visit
(
"
https://idoso-mais.herokuapp.com/
"
);
});
});
This diff is collapsed.
Click to expand it.
cypress/tsconfig.json
0 → 100644
View file @
cab15b83
{
"compilerOptions"
:
{
"target"
:
"es5"
,
"lib"
:
[
"es5"
,
"dom"
],
"types"
:
[
"cypress"
,
"node"
]
},
"include"
:
[
"**/*.ts"
]
}
This diff is collapsed.
Click to expand it.
package-lock.json
View file @
cab15b83
...
...
@@ -5,11 +5,11 @@
"requires"
:
true
,
"packages"
:
{
""
:
{
"name"
:
"idoso-mais-qa"
,
"version"
:
"1.0.0"
,
"license"
:
"ISC"
,
"dependencies"
:
{
"cypress"
:
"^10.9.0"
"cypress"
:
"^10.9.0"
,
"typescript"
:
"^4.8.4"
}
},
"node_modules/@colors/colors"
:
{
...
...
@@ -1565,6 +1565,18 @@
"url"
:
"https://github.com/sponsors/sindresorhus"
}
},
"node_modules/typescript"
:
{
"version"
:
"4.8.4"
,
"resolved"
:
"https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz"
,
"integrity"
:
"sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="
,
"bin"
:
{
"tsc"
:
"bin/tsc"
,
"tsserver"
:
"bin/tsserver"
},
"engines"
:
{
"node"
:
">=4.2.0"
}
},
"node_modules/universalify"
:
{
"version"
:
"2.0.0"
,
"resolved"
:
"https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"
,
...
...
@@ -2778,6 +2790,11 @@
"resolved"
:
"https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
,
"integrity"
:
"sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
},
"typescript"
:
{
"version"
:
"4.8.4"
,
"resolved"
:
"https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz"
,
"integrity"
:
"sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="
},
"universalify"
:
{
"version"
:
"2.0.0"
,
"resolved"
:
"https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz"
,
...
...
This diff is collapsed.
Click to expand it.
package.json
View file @
cab15b83
...
...
@@ -4,11 +4,12 @@
"description"
:
""
,
"main"
:
"index.js"
,
"scripts"
:
{
"test"
:
"
echo
\"
Error: no test specified
\"
&& exit 1
"
"test"
:
"
cypress run
"
},
"author"
:
""
,
"license"
:
"
ISC
"
,
"dependencies"
:
{
"
cypress
"
:
"
^10.9.0
"
"
cypress
"
:
"
^10.9.0
"
,
"
typescript
"
:
"
^4.8.4
"
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help