Skip to content

Commit

Permalink
#127 Remove .only
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalizer committed Jan 16, 2025
1 parent 1b695cd commit be014f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ describe('Skills Display Global Badges Tests', () => {
.contains('blah1')
});

it.only('completed badge count should not include global badges that do not have dependencies on this project', () => {
it('completed badge count should not include global badges that do not have dependencies on this project', () => {
cy.resetDb();
cy.fixture('vars.json')
.then((vars) => {
Expand All @@ -239,7 +239,7 @@ describe('Skills Display Global Badges Tests', () => {
});
cy.loginAsProxyUser();
cy.createProject(1);
cy.createProject(2);
cy.createProject(2);s
cy.createSubject(1, 1);
cy.createSubject(2, 1);
cy.createSkill(1, 1, 1, { name: 'Search blah skill 1' });
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/cypress/e2e/my-progress_breadcrumb_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ describe('My Progress Breadcrumb Tests', () => {

});

it.only('navigate through and validate breadcrumbs', function () {
it('navigate through and validate breadcrumbs', function () {

cy.visit('/');

Expand Down

0 comments on commit be014f3

Please sign in to comment.