Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-04-13 00:18:30 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-04-13 00:18:30 +0300
commitac48f7c24110a7a1e0a0aa49fc7838ab03c28374 (patch)
tree0d323ff3b3317315241fd1c784d82bfa0577711e /spec/frontend/scripts
parent6ce6d20cf0b81275bad7bf8e95cf49bd475c5c4f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/scripts')
-rw-r--r--spec/frontend/scripts/frontend/po_to_json_spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/frontend/scripts/frontend/po_to_json_spec.js b/spec/frontend/scripts/frontend/po_to_json_spec.js
index fbaad328e61..858e3c9d3c7 100644
--- a/spec/frontend/scripts/frontend/po_to_json_spec.js
+++ b/spec/frontend/scripts/frontend/po_to_json_spec.js
@@ -32,11 +32,11 @@ describe('PoToJson', () => {
});
describe('#main', () => {
- it('throws without arguments', async () => {
+ it('throws without arguments', () => {
return expect(main()).rejects.toThrow(/doesn't seem to be a folder/);
});
- it('throws if outputDir does not exist', async () => {
+ it('throws if outputDir does not exist', () => {
return expect(
main({
localeRoot: LOCALE_DIR,
@@ -45,7 +45,7 @@ describe('PoToJson', () => {
).rejects.toThrow(/doesn't seem to be a folder/);
});
- it('throws if localeRoot does not exist', async () => {
+ it('throws if localeRoot does not exist', () => {
return expect(
main({
localeRoot: 'i-do-not-exist',