Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
xusd320 committed Jan 8, 2025
1 parent 7196895 commit 13bd12e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/fixtures/javascript.require-context/lazy-case.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let context = require.context(
"lazy",
);

it("lazy: no sub directorie", () => {
it("lazy: no sub directories", () => {
it(" should get list of context files", () => {
expect(context.keys().sort()).toStrictEqual(["./a.js", "./b.js"]);
});
Expand Down
2 changes: 1 addition & 1 deletion e2e/fixtures/javascript.require-context/sync-case.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
let context = require.context("./context", false, /^\.\/(A|B)\.js$/i, "sync");

it("sync: no sub directorie", () => {
it("sync: no sub directories", () => {
it(" should get list of context files", () => {
expect(context.keys().sort()).toStrictEqual(["./a.js", "./b.js"]);
});
Expand Down

0 comments on commit 13bd12e

Please sign in to comment.