Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
m5r committed Nov 27, 2023
1 parent b0313d5 commit 68d2ad6
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions test/fn/watch-project.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function watchWrapper(action, file) {
});
}

describe.skip('watch-project', function () {
describe('watch-project', () => {
beforeEach(() => {
sinon.stub(environment, 'pathToProject').get(() => testDir);
sinon.stub(environment, 'extraArgs').get(() => { });
Expand Down Expand Up @@ -140,16 +140,14 @@ describe.skip('watch-project', function () {
.then((settings) => expect(settings.locale).equal('es'));
});

it('watch-project: upload custom translations', () => {
it('watch-project: upload custom translations', function () {
this.timeout(60000);

api.giveResponses(
{
status: 200,
body: { version: '3.5.0' },
},
{
status: 200,
body: { compressible_types: 'text/*, application/javascript, application/json, application/xml' },
},
);

return uploadCustomTranslations()
Expand Down

0 comments on commit 68d2ad6

Please sign in to comment.