aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.spec.ts.template8
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.ts.template12
2 files changed, 0 insertions, 20 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.spec.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.spec.ts.template
deleted file mode 100644
index 04bcd1dd..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.spec.ts.template
+++ /dev/null
@@ -1,8 +0,0 @@
-import { <%= classify(name) %>Pipe } from './<%= dasherize(name) %>.pipe';
-
-describe('<%= classify(name) %>Pipe', () => {
- it('create an instance', () => {
- const pipe = new <%= classify(name) %>Pipe();
- expect(pipe).toBeTruthy();
- });
-});
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.ts.template b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.ts.template
deleted file mode 100644
index cd2a9014..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.ts.template
+++ /dev/null
@@ -1,12 +0,0 @@
-import { Pipe, PipeTransform } from '@angular/core';
-
-@Pipe({
- name: '<%= camelize(name) %>'
-})
-export class <%= classify(name) %>Pipe implements PipeTransform {
-
- transform(value: unknown, ...args: unknown[]): unknown {
- return null;
- }
-
-}